24小时一体机服务
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.

74 lines
1.8 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Dto
{
public class ApplyMarKingDto
{
/// <summary>
/// 必要
/// </summary>
public string? bhdlbh { get; set; }
/// <summary>
/// 部门受案号
/// </summary>
public string? bmsah { get; set; }
public string? clqkbm { get; set; }
public string? clqkmc { get; set; }
/// <summary>
/// 承办人
/// </summary>
public string? czr { get; set; }
/// <summary>
/// 承办人编码
/// </summary>
public string? czrybm { get; set; }
/// <summary>
/// 单位编号
/// </summary>
public string? dwbm { get; set; }
public string? jwgksxid { get; set; }
/// <summary>
/// 申请人类型代码
/// </summary>
public string? sqrlxdm { get; set; }
/// <summary>
/// 申请人名称
/// </summary>
public string? sqrmc { get; set; }
/// <summary>
/// 申请日期
/// </summary>
public string? sqrq { get; set; }
/// <summary>
/// 申请人身份代码
/// </summary>
public string? sqrsfdm { get; set; }
/// <summary>
/// 事项类型代码
/// </summary>
public string? sxlxdm { get; set; }
/// <summary>
/// 事项类型名称
/// </summary>
public string? sxlxmc { get; set; }
/// <summary>
/// 当事人
/// </summary>
public string? zrrmc { get; set; }
}
public class ApplyMarKingBackDto
{
public ApplyMarKingDto ApplyMarKingDto { get; set; }
public string sxbh { get; set; }
}
}