| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | [Required(ErrorMessage = "交易主体代码为必填项")] |
| | | [SugarColumn(ColumnDescription = "交易主体code")] |
| | | public string TransactionCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 交易主体 |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToOne, nameof(TransactionCode),nameof(FBS_ExRole.Code))] |
| | | public FBS_ExRole? TransactionRole { 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> |
| | |
| | | /// <summary> |
| | | /// 未审核 |
| | | /// </summary> |
| | | [Description("未审核")] |
| | | UNExamine=0, |
| | | /// <summary> |
| | | /// 更改 |
| | | /// </summary> |
| | | [Description("更改")] |
| | | Change, |
| | | |
| | | /// <summary> |
| | | /// 通过 |
| | | /// </summary> |
| | | [Description("通过")] |
| | | Pass, |
| | | /// <summary> |
| | | /// 未通过 |
| | | /// </summary> |
| | | [Description("未通过")] |
| | | UnPass |
| | | |
| | | |