|
|
|
@ -114,7 +114,8 @@ namespace Shentun.Peis.Asbitems |
|
|
|
CriticalValueFunction = entity.CriticalValueFunction, |
|
|
|
FollowUpFunction = entity.FollowUpFunction, |
|
|
|
IsPrivacy = entity.IsPrivacy, |
|
|
|
IsOutsend = entity.IsOutsend |
|
|
|
IsOutsend = entity.IsOutsend, |
|
|
|
IsDiscount = entity.IsDiscount |
|
|
|
}; |
|
|
|
} |
|
|
|
/// <summary>
|
|
|
|
@ -169,6 +170,7 @@ namespace Shentun.Peis.Asbitems |
|
|
|
targetEntity.FollowUpFunction = sourceEntity.FollowUpFunction; |
|
|
|
targetEntity.IsPrivacy = sourceEntity.IsPrivacy; |
|
|
|
targetEntity.IsOutsend = sourceEntity.IsOutsend; |
|
|
|
targetEntity.IsDiscount = sourceEntity.IsDiscount; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -206,6 +208,7 @@ namespace Shentun.Peis.Asbitems |
|
|
|
DataHelper.CheckCharIsYOrN(entity.IsCriticalValueFunction, "是否启用危急值函数"); |
|
|
|
DataHelper.CheckCharIsYOrN(entity.IsFollowUpFunction, "是否启用随访函数"); |
|
|
|
DataHelper.CheckCharIsYOrN(entity.IsOutsend, "是否外检项目"); |
|
|
|
DataHelper.CheckCharIsYOrN(entity.IsDiscount, "是否折扣"); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|