Files
zszq-trs/YLErpDAL/Modules/DataCompare/Dto/QueryNeedCompareDataRequest.cs
T
2024-05-09 14:06:26 +08:00

23 lines
449 B
C#

using BaseOUDAL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Modules.DataCompare.Dto
{
public class QueryNeedCompareDataRequest: BaseSearchReq
{
public DateTime ValueDate { get; set; }
public List<int> AssetId { get; set; }
public string TradeNumber { get; set; }
public bool ShowException { get; set; }
}
}