sunpengfei
7 天以前 aa9198ffa4bf42d96628d4d781e9ef055d65b06e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 用户银行卡信息
    /// </summary>
    public class UserBankCard : CommonEntity
    {
        /// <summary>
        /// 用户信息Id
        /// </summary>
        public Guid UserId { get; set; }
 
        /// <summary>
        /// 用户信息
        /// </summary>
        public User User { get; set; }
 
        /// <summary>
        /// 银行卡号
        /// </summary>
        [MaxLength(32)]
        public string Code { get; set; }
 
        /// <summary>
        /// 所属银行
        /// </summary>
        public string Bank { get; set; }
 
        /// <summary>
        /// 所属支行
        /// </summary>
        public string BankBranch { get; set; }
 
        /// <summary>
        /// 姓名
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 身份证
        /// </summary>
        public string Identity { get; set; }
 
        /// <summary>
        /// 银行预留手机号
        /// </summary>
        [MaxLength(11)]
        public string PhoneNumber { get; set; }
    }
}