using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Dto { public class RegisterDto { /// /// 部门受案号 /// public string Bmsah { get; set; } /// /// 单位编码 /// public string UnitCode { get; set; } /// /// 单位编码 /// public string UnitName { get; set; } /// /// 当事人身份证 /// public string PartyIdCard { get; set; } /// /// 当事人-委托人 /// public string PartyConsignor { get; set; } /// /// 当事人-委托人关系 /// public string PartyPrincipalRelationship { get; set; } /// /// 申请人-律师证件号码 /// public string ProposerZJHM { get; set; } /// /// 申请人类型 /// public string ProposerType { get; set; } /// /// 申请人-联系电话 /// public string ProposerTel { get; set; } /// /// 律师事务所统一社会信用代码 /// public string ProposerSCC { get; set; } /// /// 委托人 /// public string Wtr { get; set; } /// /// 委托人与当事人关系 /// public string Wtrydsrgxdm { get; set; } /// /// 委托人与当事人关系 /// public string Wtrydsrgxmc { get; set; } /// /// 值班律师 /// public string Zbls { get; set; } public string Lxdh { get; set; } public string Lxdz { get; set; } } }