| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace ContractService.Lawyer.Dto
- {
-
- /// <summary>
- /// 律师信息
- /// </summary>
- [AutoMapTo(typeof(LawyerInfo))]
- public class LawyerUpdateDto: EntityDto<string>
- {
-
- /// <summary>
- /// 律师编号
- /// </summary>
- [StringLength(50)]
- public string Code { get; set; }
-
- /// <summary>
- /// 律师姓名
- /// </summary>
- [Required]
- [StringLength(50)]
- public string Name { get; set; }
-
- /// <summary>
- /// 律师简介
- /// </summary>
- [StringLength(500)]
- public string Profile { get; set; }
-
- /// <summary>
- /// 出生日期
- /// </summary>
- public DateTime? Birthday { get; set; }
-
- /// <summary>
- /// 身份证号
- /// </summary>
- [StringLength(20)]
- public string IdCard { get; set; }
-
- /// <summary>
- /// 联系号码
- /// </summary>
- [Required]
- [StringLength(20)]
- public string PhoneNumber { get; set; }
-
- /// <summary>
- /// 备用号码
- /// </summary>
- [StringLength(20)]
- public string PhoneNumber2 { get; set; }
- /// <summary>
- /// 电子邮箱
- /// </summary>
- [MaxLength(50)]
- public string Email { get; set; }
- public string OrganizationNo { get; set; }
- }
- }
|