using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YLErp.Helpers; namespace YLErp.Model { /// /// 出入金审批请求 /// public class ClientCashAuditReq { public string enid { get; set; } public int id => DataProtectHelper.DecryptInt(enid); public string status { get; set; } public string auditComment { get; set; } } }