21 lines
476 B
C#
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; }
|
|
}
|
|
}
|