| 123456789101112131415161718192021222324252627282930313233 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using Abp.Domain.Entities.Auditing;
- using ContractService.Authorization.Users;
- namespace ContractService.Client
- {
- /// <summary>
- /// 客户公司
- /// </summary>
- [Table("Cs_ClientCompanies")]
- public class ClientCompanyInfo : FullAuditedEntity<string, User>
- {
- /// <summary>
- /// 公司名称
- /// </summary>
- [MaxLength(50)]
- public string Name { get; set; }
- /// <summary>
- /// 系统显示名称
- /// </summary>
- [MaxLength(50)]
- public string DisplayName { get; set; }
- /// <summary>
- /// 公司描述
- /// </summary>
- [MaxLength(500)]
- public string Description { get; set; }
- [MaxLength(1000)]
- public string Remark { get; set; }
- }
- }
|