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