You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.4 KiB
72 lines
1.4 KiB
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Dto
|
||
|
{
|
||
|
public class RegisterDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 部门受案号
|
||
|
/// </summary>
|
||
|
public string Bmsah { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 单位编码
|
||
|
/// </summary>
|
||
|
public string UnitCode { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 单位编码
|
||
|
/// </summary>
|
||
|
public string UnitName { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 当事人身份证
|
||
|
/// </summary>
|
||
|
public string PartyIdCard { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 当事人-委托人
|
||
|
/// </summary>
|
||
|
public int PartyConsignor { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 当事人-委托人关系
|
||
|
/// </summary>
|
||
|
public int PartyPrincipalRelationship { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 申请人-身份证
|
||
|
/// </summary>
|
||
|
|
||
|
public string ProposerIdCard { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 申请人类型
|
||
|
/// </summary>
|
||
|
|
||
|
public string ProposerType { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 申请人-联系电话
|
||
|
/// </summary>
|
||
|
public string ProposerTel { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 律师事务所统一社会信用代码
|
||
|
/// </summary>
|
||
|
public string ProposerSCC { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|