using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Abp.Domain.Entities.Auditing; using ContractService.Authorization.Users; namespace ContractService.LawFirm { /// /// 律所信息 /// [Table("Ls_LawFirms")] public class LawFirmInfo :FullAuditedEntity { /// /// 律所名称 /// [MaxLength(50)] public string Name { get; set; } /// /// 系统显示名称 /// [MaxLength(50)] public string DisplayName { get; set; } /// /// 律所描述 /// [MaxLength(500)] public string Description { get; set; } [MaxLength(1000)] public string Remark { get; set; } } }