Browse Source

添加id字段

develop-lawyerExampaper
胡超1 2 years ago
parent
commit
29df5f46b8
  1. 4
      Elight.Entity/AppMode/Lawyer/JZML.cs

4
Elight.Entity/AppMode/Lawyer/JZML.cs

@ -18,6 +18,9 @@ namespace Elight.Entity.AppMode.Lawyer
[SugarTable("case_jzml")] [SugarTable("case_jzml")]
public class JZML public class JZML
{ {
[DataMember]
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
@ -62,7 +65,6 @@ namespace Elight.Entity.AppMode.Lawyer
/// 单位编码 /// 单位编码
/// </summary> /// </summary>
public string dwbm { get; set; } public string dwbm { get; set; }
public List<JZWJItem> jzwj { get; set; }
} }

Loading…
Cancel
Save