using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Abp.Domain.Entities.Auditing; using ContractService.Authorization.Users; using ContractService.Configuration; namespace ContractService.LegalCase { /// /// 合同备注信息 /// [Table("Ls_LegalCaseNotes")] public class LegalCaseNoteInfo : CreationAuditedEntity { /// /// 项目信息 /// [MaxLength(IwbConsts.PrimaryKey)] public string CaseNo { get; set; } [ForeignKey("CaseNo")] public LegalCaseInfo CaseInfo { get; set; } /// /// 内容信息 /// [MaxLength(1000)] public string NoteContent { get; set; } /// /// 备注类型 /// public int NoteType { get; set; } [MaxLength(1000)] public string Remark { get; set; } } }