|
|
@ -22,6 +22,10 @@ namespace Elight.Entity.AppMode.Lawyer |
|
|
|
[SugarColumn(IsPrimaryKey = true)] |
|
|
|
[SugarColumn(IsPrimaryKey = true)] |
|
|
|
public string Id { get; set; } |
|
|
|
public string Id { get; set; } |
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 卷宗Id |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
public string? jzId { get; set; } |
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// |
|
|
|
/// |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public string taskid { get; set; } |
|
|
|
public string taskid { get; set; } |
|
|
@ -65,6 +69,12 @@ namespace Elight.Entity.AppMode.Lawyer |
|
|
|
/// 单位编码 |
|
|
|
/// 单位编码 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public string dwbm { get; set; } |
|
|
|
public string dwbm { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 导航 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Navigate(NavigateType.OneToMany, nameof(JZWJItem.jzmlId))]//BookA表中的studenId |
|
|
|
|
|
|
|
public List<JZWJItem> jzwj { get; set; }//注意禁止给books手动赋值 |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|