| | |
| | | /// 企业类型 从企业类型中选择 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "企业类型 ", Length = 255)] |
| | | [Required(ErrorMessage = "企业类型")] |
| | | //[Required(ErrorMessage = "企业类型")] |
| | | public string EnterpriseType { get; set; } |
| | | |
| | | |
| | |
| | | /// <summary> |
| | | /// 营业执照文件路径 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "营业执照文件必传")] |
| | | //[Required(ErrorMessage = "营业执照文件必传")] |
| | | [SugarColumn(ColumnDescription = "营业执照文件路径")] |
| | | public string BusinessLicense { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业名称 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "企业名称为必填项")] |
| | | //[Required(ErrorMessage = "企业名称为必填项")] |
| | | [SugarColumn(ColumnDescription = "企业名称")] |
| | | public string EnterpriseName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 统一社会信用代码 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "统一社会信用代码为必填项")] |
| | | [SugarColumn(ColumnDescription = "统一社会信用代码")] |
| | | //[Required(ErrorMessage = "统一社会信用代码为必填项")] |
| | | [SugarColumn(ColumnDescription = "统一社会信用代码", IsNullable = true)] |
| | | public string UnifiedSocialCreditCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 注册资金(单位:万元 ) |
| | | /// </summary> |
| | | [Required(ErrorMessage = "注册资金为必填项")] |
| | | [SugarColumn(ColumnDescription = "注册资金")] |
| | | //[Required(ErrorMessage = "注册资金为必填项")] |
| | | [SugarColumn(ColumnDescription = "注册资金", IsNullable = true)] |
| | | public string RegisteredCapital { get; set; } |
| | | |
| | | |
| | |
| | | /// <summary> |
| | | /// 法定代表人姓名 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "法定代表人姓名为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名")] |
| | | //[Required(ErrorMessage = "法定代表人姓名为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名", IsNullable = true)] |
| | | public string LegalRepresentativeName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法定代表人身份证文件路径 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "法定代表人身份证文件路径毕传")] |
| | | [SugarColumn(ColumnDescription = "法定代表人身份证文件路径")] |
| | | //[Required(ErrorMessage = "法定代表人身份证文件路径毕传")] |
| | | [SugarColumn(ColumnDescription = "法定代表人身份证文件路径", IsNullable = true)] |
| | | public string LegalRepresentativeIdCard { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法定代表人身份证号码 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "法定代表人身份证号码为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人身份证号码")] |
| | | //[Required(ErrorMessage = "法定代表人身份证号码为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人身份证号码", IsNullable = true)] |
| | | public string LegalRepresentativeIdNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法定代表人联系电话 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "法定代表人联系电话为必填项")] |
| | | //[Required(ErrorMessage = "法定代表人联系电话为必填项")] |
| | | [Phone(ErrorMessage = "法定代表人联系电话不正确")] |
| | | [SugarColumn(ColumnDescription = "法定代表人联系电话")] |
| | | [SugarColumn(ColumnDescription = "法定代表人联系电话", IsNullable = true)] |
| | | public string LegalRepresentativePhone { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业住所(下拉选择,需结合实际可选值,先字符串接收 ) |
| | | /// </summary> |
| | | [Required(ErrorMessage = "企业住所为必填项")] |
| | | [SugarColumn(ColumnDescription = "企业住所")] |
| | | //[Required(ErrorMessage = "企业住所为必填项")] |
| | | [SugarColumn(ColumnDescription = "企业住所", IsNullable = true)] |
| | | public string Residence { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业联系电话 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "企业联系电话为必填项")] |
| | | //[Required(ErrorMessage = "企业联系电话为必填项")] |
| | | [Phone(ErrorMessage = "联系电话格式不正确")] |
| | | [SugarColumn(ColumnDescription = "企业联系电话")] |
| | | [SugarColumn(ColumnDescription = "企业联系电话", IsNullable = true)] |
| | | public string EnterprisePhone { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业成立时间 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "成立时间为必填项")] |
| | | [SugarColumn(ColumnDescription = "企业成立时间")] |
| | | //[Required(ErrorMessage = "成立时间为必填项")] |
| | | [SugarColumn(ColumnDescription = "企业成立时间", IsNullable = true)] |
| | | public DateTime EstablishmentTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业主营业务 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "主营业务为必填项")] |
| | | //[Required(ErrorMessage = "主营业务为必填项")] |
| | | [SugarColumn(ColumnDescription = "企业主营业务",Length =Int32.MaxValue,IsNullable = true)] |
| | | public string MainBusiness { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业邮箱 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "企业邮箱为必填项")] |
| | | //[Required(ErrorMessage = "企业邮箱为必填项")] |
| | | [EmailAddress(ErrorMessage = "邮箱格式不正确")] |
| | | [SugarColumn(ColumnDescription = "企业邮箱")] |
| | | [SugarColumn(ColumnDescription = "企业邮箱", IsNullable = true)] |
| | | public string EnterpriseEmail { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 业务经办人姓名 |
| | | /// </summary> |
| | | |
| | | |
| | | [SugarColumn(ColumnDescription = "业务经办人姓名", IsNullable = true)] |
| | | public string OperatorName { get; set; } |
| | | |
| | |
| | | public string OperatorIdNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 业务经办人联系电话 |
| | | /// 企业经办人联系电话 |
| | | /// </summary> |
| | | |
| | | [Required(ErrorMessage = "企业经办人联系电话 必填")] |
| | | [Phone(ErrorMessage = "联系电话格式不正确")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名",IsNullable =true)] |
| | | [SugarColumn(ColumnDescription = "业务经办人", IsNullable =true)] |
| | | public string OperatorPhone { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业开户行 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "开户行为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名")] |
| | | //[Required(ErrorMessage = "开户行为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名", IsNullable = true)] |
| | | public string BankName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业银行账号 |
| | | /// </summary> |
| | | [Required(ErrorMessage = "银行账号为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名")] |
| | | //[Required(ErrorMessage = "银行账号为必填项")] |
| | | [SugarColumn(ColumnDescription = "法定代表人姓名", IsNullable = true)] |
| | | public string BankAccount { get; set; } |
| | | |
| | | /// <summary> |