| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using ContractService.Client;
- using ContractService.Configuration;
- using ContractService.LawFirm;
- namespace ContractService.Lawyer
- {
- public class LawyerInfoClone
- {
- public string Id { get; set; }
- /// <summary>
- /// 律师编号
- /// </summary>
- [MaxLength(50)]
- public string Code { get; set; }
- /// <summary>
- /// 律师姓名
- /// </summary>
- [MaxLength(50)]
- public string Name { get; set; }
- /// <summary>
- /// 律师描述
- /// </summary>
- [MaxLength(500)]
- public string Profile { get; set; }
- /// <summary>
- /// 出生日期
- /// </summary>
- public DateTime? Birthday { get; set; }
- /// <summary>
- /// 身份证号
- /// </summary>
- [MaxLength(20)]
- public string IdCard { get; set; }
- /// <summary>
- /// 联系号码
- /// </summary>
- [MaxLength(20)]
- public string PhoneNumber { get; set; }
- /// <summary>
- /// 备用号码
- /// </summary>
- [MaxLength(20)]
- public string PhoneNumber2 { get; set; }
- /// <summary>
- /// 系统登陆账号
- /// </summary>
- [MaxLength(20)]
- public string UserName { get; set; }
- /// <summary>
- /// 律所信息
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string LawFirmNo { get; set; }
- [ForeignKey("LawFirmNo")]
- public LawFirmInfo LawFirmInfo { get; set; }
- /// <summary>
- /// 组织信息
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string OrganizationNo { get; set; }
- [ForeignKey("OrganizationNo")]
- public OrganizationInfo OrganizationInfo { get; set; }
- /// <summary>
- /// 电子邮箱
- /// </summary>
- [MaxLength(50)]
- public string Email { get; set; }
- [MaxLength(1000)]
- public string Remark { get; set; }
- public bool IsMaster { get; set; }
- public string OrganizationName { get; set; }
- public string LawFirmName { get; set; }
- public DateTime CreationTime { get; set; }
- }
- }
|