| 1234567891011121314151617181920212223242526272829 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using Abp.Domain.Entities.Auditing;
- using ContractService.Authorization.Users;
- using ContractService.Configuration;
- namespace ContractService.LegalContract
- {
- /// <summary>
- /// 合同信息
- /// </summary>
- [Table("Ls_LegalContractContents")]
- public class LegalContractContentInfo : CreationAuditedEntity<long, User>
- {
- /// <summary>
- /// 编号(合同,补充合同)
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string No { get; set; }
- /// <summary>
- /// 内容信息
- /// </summary>
- public string ContentInfo { get; set; }
- [MaxLength(1000)]
- public string Remark { get; set; }
- }
- }
|