diff --git a/Elight.Entity/APPDto/Lawyer/JZJBXX.cs b/Elight.Entity/APPDto/Lawyer/JZJBXXDto.cs similarity index 70% rename from Elight.Entity/APPDto/Lawyer/JZJBXX.cs rename to Elight.Entity/APPDto/Lawyer/JZJBXXDto.cs index 4372522..2206d38 100644 --- a/Elight.Entity/APPDto/Lawyer/JZJBXX.cs +++ b/Elight.Entity/APPDto/Lawyer/JZJBXXDto.cs @@ -16,42 +16,42 @@ namespace Elight.Entity.APPDto.Lawyer /// /// 部门受案号 v /// - public string Id { get; set; } + public string? Id { get; set; } - public string bmsah { get; set; } + public string? bmsah { get; set; } /// /// 卷宗编号v /// - public string jzbh { get; set; } + public string? jzbh { get; set; } /// /// 单位编码 /// - public string dwbm { get; set; } + public string? dwbm { get; set; } /// /// (简案)王奇涉嫌危险驾驶案 v /// - public string jzmc { get; set; } + public string? jzmc { get; set; } /// /// 卷宗制作人 /// - public string jzzzr { get; set; } + public string? jzzzr { get; set; } /// /// 案件类别编码 /// - public string ajlbbm { get; set; } + public string? ajlbbm { get; set; } /// /// 案件类别名称 /// - public string ajlbmc { get; set; } + public string? ajlbmc { get; set; } /// /// 卷宗目录 v /// - public List jzml { get; set; } + public List? jzml { get; set; } } } diff --git a/Elight.Entity/APPDto/Lawyer/JZML.cs b/Elight.Entity/APPDto/Lawyer/JZMLDto.cs similarity index 67% rename from Elight.Entity/APPDto/Lawyer/JZML.cs rename to Elight.Entity/APPDto/Lawyer/JZMLDto.cs index 35c6866..e313334 100644 --- a/Elight.Entity/APPDto/Lawyer/JZML.cs +++ b/Elight.Entity/APPDto/Lawyer/JZMLDto.cs @@ -15,51 +15,53 @@ namespace Elight.Entity.APPDto.Lawyer /// public class JZMLDto { + public string? Id { get; set; } /// /// /// - public string taskid { get; set; } + public string? taskid { get; set; } /// /// 卷宗编号 /// - public string jzbh { get; set; } + public string? jzbh { get; set; } /// /// 目录编号 /// - public string mlbh { get; set; } + public string? mlbh { get; set; } /// /// 父目录编号 /// - public string fmlbh { get; set; } + public string? fmlbh { get; set; } /// /// 目录显示名称 /// - public string mlxsmc { get; set; } + public string? mlxsmc { get; set; } /// /// 目录信息 /// - public string mlxx { get; set; } + public string? mlxx { get; set; } /// /// 目录顺序号 /// - public string mlsxh { get; set; } + public string? mlsxh { get; set; } /// /// 目录类型 卷,目录看,文件 /// - public string mllx { get; set; } + public string? mllx { get; set; } /// /// 单位编码 /// - public string dwbm { get; set; } - public List jzwj { get; set; } + public string? dwbm { get; set; } + + public List? jzwj { get; set; } } diff --git a/Elight.Entity/APPDto/Lawyer/JZWJItem.cs b/Elight.Entity/APPDto/Lawyer/JZWJItemDto.cs similarity index 66% rename from Elight.Entity/APPDto/Lawyer/JZWJItem.cs rename to Elight.Entity/APPDto/Lawyer/JZWJItemDto.cs index a5fa773..cf88e0a 100644 --- a/Elight.Entity/APPDto/Lawyer/JZWJItem.cs +++ b/Elight.Entity/APPDto/Lawyer/JZWJItemDto.cs @@ -17,90 +17,90 @@ namespace Elight.Entity.APPDto.Lawyer /// /// 文件唯一标识 /// - public string Id { get; set; } - public string wjxh { get; set; } + public string? Id { get; set; } + public string? wjxh { get; set; } /// /// 目录编号 /// - public string mlbh { get; set; } + public string? mlbh { get; set; } /// /// 源文件路径 /// - public string ywjlj { get; set; } + public string? ywjlj { get; set; } /// /// 缩略图文件路径 /// - public string sltwjlj { get; set; } + public string? sltwjlj { get; set; } /// /// pdf文件路径 /// - public string pdfwjlj { get; set; } + public string? pdfwjlj { get; set; } /// /// 图片实际显示路径! /// - public string jpgwjlj { get; set; } + public string? jpgwjlj { get; set; } /// /// 文件页码 /// - public string wjym { get; set; } + public string? wjym { get; set; } /// /// 文件类型 /// - public string wjlx { get; set; } + public string? wjlx { get; set; } /// /// /// - public string wjscbz { get; set; } + public string? wjscbz { get; set; } /// /// 文件顺序号 排序 /// - public int wjsxh { get; set; } + public int? wjsxh { get; set; } /// /// 文件显示名称 第二页 /// - public string wjxsmc { get; set; } + public string? wjxsmc { get; set; } /// /// 卷宗编号 /// - public string jzbh { get; set; } + public string? jzbh { get; set; } /// /// 文件ocr识别状态 /// - public string wjocrsbzt { get; set; } + public string? wjocrsbzt { get; set; } /// /// 创建时间 /// - public string cjsj { get; set; } + public string? cjsj { get; set; } /// /// 上传时间 /// - public string time { get; set; } + public string? time { get; set; } - public string taskid { get; set; } + public string? taskid { get; set; } /// /// 文件标识 /// - public string wjbs { get; set; } + public string? wjbs { get; set; } /// /// 标识编号 /// - public string bsbh { get; set; } + public string? bsbh { get; set; } } }