| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | /// </summary> |
| | | [SugarTable("FBS_CusExtend", "企业资料")] |
| | | [IncreTable] |
| | | public class FBS_CusExtend: EntityBaseTenant |
| | | public class FBS_CusExtend: EntityBase |
| | | { |
| | | |
| | | /// <summary> |
| | | /// 用户ID |
| | | /// 注意该字段已经取消,这里只是用来屏蔽源代码中的报错,修改完后,应该删除该字段 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "用户ID" )] |
| | | [Required(ErrorMessage = "用户ID 必填")] |
| | | [SugarColumn(IsIgnore =true)] |
| | | public long CustomerId { get; set; } |
| | | /// <summary> |
| | | /// 注意该字段已经取消,这里只是用来屏蔽源代码中的报错,修改完后,应该删除该字段 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string TransactionCode { get; set; } |
| | | /// <summary> |
| | | /// 注意该字段已经取消,这里只是用来屏蔽源代码中的报错,修改完后,应该删除该字段 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | |
| | | |
| | | |
| | | public CusExtendStep steps { get; set; } |
| | | /// <summary> |
| | | /// 企业类型 从企业类型中选择 |
| | | /// </summary> |
| | |
| | | public string EnterpriseType { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 交易主体 代码 同角色代码 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "交易主体代码为必填项")] |
| | | [SugarColumn(ColumnDescription = "交易主体code")] |
| | | public string TransactionCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 营业执照文件路径 |
| | | /// </summary> |
| | |
| | | /// 法定代表人身份证号码 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "法定代表人身份证号码为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名")] |
| | | [SugarColumn(ColumnDescription = "法定代表人身份证号码")] |
| | | public string LegalRepresentativeIdNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法定代表人联系电话 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "法定代表人联系电话为必填项")] |
| | | [Phone(ErrorMessage = "联系电话格式不正确")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名")] |
| | | [Phone(ErrorMessage = "法定代表人联系电话不正确")] |
| | | [SugarColumn(ColumnDescription = "法定代表人联系电话")] |
| | | public string LegalRepresentativePhone { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | [Required(ErrorMessage = "银行账号为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名")] |
| | | public string BankAccount { get; set; } |
| | | /// <summary> |
| | | /// 审核步骤 |
| | | /// </summary> |
| | | |
| | | [SugarColumn(ColumnDescription = "审核步骤")] |
| | | public CusExtendStep steps { set; get; } = CusExtendStep.UNExamine; |
| | | /// <summary> |
| | | /// /岗位职责 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "岗位职责", IsNullable = true)] |
| | | public string JobTitle { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 银行收款码 |
| | | /// </summary> |
| | | |
| | | [SugarColumn(ColumnDescription = "银行收款码")] |
| | | public string BankAccountIMG { get; set; } |
| | | /// <summary> |
| | | /// 用户管理员列表 |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToMany,nameof(FBS_CustormerUsers.CusExtendId),nameof(Id))] |
| | | public List< FBS_CustormerUsers> CustormerUsers { get; set; } |
| | | /// <summary> |
| | | /// 用户角色 |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToMany, nameof(FBS_CoutomerExRole.CusExtendId), nameof(Id))] |
| | | public List<FBS_CoutomerExRole> ExRoles { get; set; } |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | /// <summary> |
| | | /// 未审核 |
| | | /// </summary> |
| | | UNExamine=0, |
| | | [Description("未审核")] |
| | | UNExamine =0, |
| | | /// <summary> |
| | | /// 更改 |
| | | /// </summary> |
| | | [Description("更改")] |
| | | Change, |
| | | |
| | | |
| | | /// <summary> |
| | | /// 通过 |
| | | /// </summary> |
| | | [Description("通过")] |
| | | Pass, |
| | | /// <summary> |
| | | /// 未通过 |
| | | /// </summary> |
| | | [Description("未通过")] |
| | | UnPass |
| | | |
| | | |