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.
61 lines
1.4 KiB
61 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.AppMode.Lawyer
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 卷宗基本信息
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DataContract]
|
||
|
[SugarTable("case_jzlbxx")]
|
||
|
public class JZJBXX
|
||
|
{
|
||
|
|
||
|
[DataMember]
|
||
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
public string Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 部门受案号 v
|
||
|
/// </summary>
|
||
|
|
||
|
[DataMember]
|
||
|
public string bmsah { get; set; }
|
||
|
[DataMember]
|
||
|
/// <summary>
|
||
|
/// 卷宗编号v
|
||
|
/// </summary>
|
||
|
public string jzbh { get; set; }
|
||
|
[DataMember]
|
||
|
/// <summary>
|
||
|
/// 单位编码
|
||
|
/// </summary>
|
||
|
public string dwbm { get; set; }
|
||
|
[DataMember]
|
||
|
/// <summary>
|
||
|
/// (简案)王奇涉嫌危险驾驶案 v
|
||
|
/// </summary>
|
||
|
public string jzmc { get; set; }
|
||
|
[DataMember]
|
||
|
/// <summary>
|
||
|
/// 卷宗制作人
|
||
|
/// </summary>
|
||
|
public string jzzzr { get; set; }
|
||
|
[DataMember]
|
||
|
/// <summary>
|
||
|
/// 案件类别编码
|
||
|
/// </summary>
|
||
|
public string ajlbbm { get; set; }
|
||
|
[DataMember]
|
||
|
/// <summary>
|
||
|
/// 案件类别名称
|
||
|
/// </summary>
|
||
|
public string ajlbmc { get; set; }
|
||
|
}
|
||
|
}
|