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