| | |
| | | using Mapster; |
| | | using Furion.DatabaseAccessor; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | |
| | | /// <summary> |
| | | /// 企业认证 |
| | | /// </summary> |
| | | public class EnterpriseAuth : CommonEntity |
| | | public class EnterpriseAuth : CommonEntity<MasterDbContextLocator, SyncTargetDbContextLocator> |
| | | { |
| | | /// <summary> |
| | | /// 企业信息 |
| | |
| | | /// 企业授权书 |
| | | /// </summary> |
| | | public string ProxyPowerAttorneyUrl { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 电子签企业Id |
| | | /// </summary> |
| | | public Guid? ElectronSignEnterpriseId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 第三方实名通道账号 |
| | | /// </summary> |
| | | public string CertAccount { get; set; } |
| | | } |
| | | } |