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.
107 lines
2.3 KiB
107 lines
2.3 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 JZWJItemDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 文件唯一标识
|
||
|
/// </summary>
|
||
2 years ago
|
public string? Id { get; set; }
|
||
|
public string? wjxh { 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? ywjlj { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 缩略图文件路径
|
||
|
/// </summary>
|
||
2 years ago
|
public string? sltwjlj { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// pdf文件路径
|
||
|
/// </summary>
|
||
2 years ago
|
public string? pdfwjlj { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 图片实际显示路径!
|
||
|
/// </summary>
|
||
2 years ago
|
public string? jpgwjlj { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 文件页码
|
||
|
/// </summary>
|
||
2 years ago
|
public string? wjym { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 文件类型
|
||
|
/// </summary>
|
||
2 years ago
|
public string? wjlx { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
2 years ago
|
public string? wjscbz { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 文件顺序号 排序
|
||
|
/// </summary>
|
||
2 years ago
|
public int? wjsxh { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 文件显示名称 第二页
|
||
|
/// </summary>
|
||
2 years ago
|
public string? wjxsmc { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 卷宗编号
|
||
|
/// </summary>
|
||
2 years ago
|
public string? jzbh { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 文件ocr识别状态
|
||
|
/// </summary>
|
||
2 years ago
|
public string? wjocrsbzt { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
2 years ago
|
public string? cjsj { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 上传时间
|
||
|
/// </summary>
|
||
2 years ago
|
public string? time { get; set; }
|
||
2 years ago
|
|
||
|
|
||
2 years ago
|
public string? taskid { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 文件标识
|
||
|
/// </summary>
|
||
2 years ago
|
public string? wjbs { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 标识编号
|
||
|
/// </summary>
|
||
2 years ago
|
public string? bsbh { get; set; }
|
||
2 years ago
|
}
|
||
|
}
|