Compare commits
2 Commits
1f8f3242b5
...
3eb3478353
Author | SHA1 | Date |
---|---|---|
|
3eb3478353 | |
|
cb25fa309f |
|
@ -146,7 +146,7 @@ namespace IRaCIS.Core.Application.Service.Inspection
|
||||||
SubjectVisitId = data.SubjectVisitId,
|
SubjectVisitId = data.SubjectVisitId,
|
||||||
//OptType = data.OptType,
|
//OptType = data.OptType,
|
||||||
IP = data.IP,
|
IP = data.IP,
|
||||||
Reason = data.Reason,
|
Reason = leftfrontAuditConfig.IsHaveReason? data.Reason:string.Empty,
|
||||||
IsSign = leftfrontAuditConfig.IsHaveSign && lefttrialSign.SignText != null && lefttrialSign.SignText != string.Empty,
|
IsSign = leftfrontAuditConfig.IsHaveSign && lefttrialSign.SignText != null && lefttrialSign.SignText != string.Empty,
|
||||||
SignId = data.SignId,
|
SignId = data.SignId,
|
||||||
ParentId = data.ParentId,
|
ParentId = data.ParentId,
|
||||||
|
|
|
@ -66,6 +66,9 @@ public class DataInspection : BaseAddAuditEntity
|
||||||
[Comment("父ID")]
|
[Comment("父ID")]
|
||||||
public Guid? ParentId { get; set; }
|
public Guid? ParentId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 原因
|
||||||
|
/// </summary>
|
||||||
public string Reason { get; set; } = string.Empty;
|
public string Reason { get; set; } = string.Empty;
|
||||||
|
|
||||||
[Comment("角色名称")]
|
[Comment("角色名称")]
|
||||||
|
|
Loading…
Reference in New Issue