using YLErp.Helpers; namespace YLErp.Model { /// /// 黑名单审批请求。 /// public class ClientBlackAuditReq { public string enid { get; set; } public int id => DataProtectHelper.DecryptInt(enid); public string status { get; set; } public string auditComment { get; set; } } }