Files
zszq-trs/YLErpDAL/Model/ClientCashAuditReq.cs
T
2024-05-09 14:06:26 +08:00

21 lines
476 B
C#

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