#region using System; #endregion namespace CSFrameworkV5.Interfaces { /// /// 审核参数 /// [Serializable] public class QueryApproval { public DateTime AppDate { get; set; } public string AppUser { get; set; } public string DBID { get; set; } public string FlagApp { get; set; } public string KeyFieldName { get; set; } public string KeyValue { get; set; } public string TableName { get; set; } public string AppNAME { get; set; } public bool IsApproval() { return FlagApp == "Y"; } public bool IsUnApproval() { return FlagApp == "N"; } } }