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.
70 lines
1.4 KiB
70 lines
1.4 KiB
2 years ago
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Runtime.Serialization;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Elight.Entity.APPDto.Lawyer
|
||
|
{
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 卷宗目录
|
||
|
/// </summary>
|
||
|
public class JZMLDto
|
||
|
{
|
||
2 years ago
|
public string? Id { get; set; }
|
||
2 years ago
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
2 years ago
|
public string? taskid { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 卷宗编号
|
||
|
/// </summary>
|
||
2 years ago
|
public string? jzbh { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 目录编号
|
||
|
/// </summary>
|
||
2 years ago
|
public string? mlbh { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 父目录编号
|
||
|
/// </summary>
|
||
2 years ago
|
public string? fmlbh { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 目录显示名称
|
||
|
/// </summary>
|
||
2 years ago
|
public string? mlxsmc { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 目录信息
|
||
|
/// </summary>
|
||
2 years ago
|
public string? mlxx { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 目录顺序号
|
||
|
/// </summary>
|
||
2 years ago
|
public string? mlsxh { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 目录类型 卷,目录看,文件
|
||
|
/// </summary>
|
||
2 years ago
|
public string? mllx { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 单位编码
|
||
|
/// </summary>
|
||
2 years ago
|
public string? dwbm { get; set; }
|
||
|
|
||
|
public List<JZWJItemDto>? jzwj { get; set; }
|
||
2 years ago
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|