| | |
| | | using System; |
| | | using Furion.DatabaseAccessor; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | |
| | | /// <summary> |
| | | /// 合同制版 |
| | | /// </summary> |
| | | public class ContractTemplate : CommonEntity, IIsDisabled |
| | | public class ContractTemplate : CommonEntity<MasterDbContextLocator, SyncTargetDbContextLocator>, IIsDisabled |
| | | { |
| | | public ContractTemplate() |
| | | { |
| | |
| | | public string File { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 小程序码 |
| | | /// </summary> |
| | | public string WxmpQrCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 制版模板照片 |
| | | /// </summary> |
| | | public string TemplateEditData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 制版变量JSON |
| | | /// </summary> |
| | | public string TemplateJsonData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 业务编码 |
| | | /// </summary> |
| | | [MaxLength(32)] |
| | | public string Code { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 电子签合同模板Id |
| | | /// </summary> |
| | | public Guid? ElectronSignContractTemplateId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变量 |
| | | /// </summary> |
| | | public List<ContractTemplateValue> Values { get; set; } |