| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System.ComponentModel.DataAnnotations;
- using Abp.AutoMapper;
- using ContractService.Client;
- using ContractService.Configuration;
- using IwbZero.AppServiceBase;
- namespace ContractService.Basic.Organization.Dto
- {
-
- /// <summary>
- /// 客户组织结构
- /// </summary>
- [AutoMapTo(typeof(OrganizationInfo))]
- public class OrganizationCreateDto:IwbEntityDto
- {
-
- [StringLength(IwbConsts.PrimaryKey)]
- public string ParentNo { get; set; }
- /// <summary>
- /// 组织名称
- /// </summary>
- [StringLength(50)]
- public string Name { get; set; }
- /// <summary>
- /// 组织描述
- /// </summary>
- [StringLength(500)]
- public string Description { get; set; }
- /// <summary>
- /// 路径
- /// </summary>
- [StringLength(1000)]
- public string Path { get; set; }
- /// <summary>
- /// 排序序号
- /// </summary>
- public int Sort { get; set; }
- /// <summary>
- /// 公司信息
- /// </summary>
- [StringLength(IwbConsts.PrimaryKey)]
- public string CompanyNo { get; set; }
- /// <summary>
- /// 律所信息
- /// </summary>
- [StringLength(IwbConsts.PrimaryKey)]
- public string LawFirmNo { get; set; }
- }
- }
|