23 lines
449 B
C#
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; }
|
|
|
|
|
|
}
|
|
}
|