45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace GZ_LTHPilot_ORDER.Models.K3Request
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
|
|||
|
|
public class ReportDataParam
|
|||
|
|
{
|
|||
|
|
public bool ReturnJsonData { get; set; }
|
|||
|
|
public string FieldKeys { get; set; }
|
|||
|
|
public string SchemeId { get; set; }
|
|||
|
|
public int StartRow { get; set; }
|
|||
|
|
public int Limit { get; set; }
|
|||
|
|
public bool IsVerifyBaseDataField { get; set; }
|
|||
|
|
public object[] FilterString { get; set; }
|
|||
|
|
public Model Model { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class Model
|
|||
|
|
{
|
|||
|
|
public string FSaleOrgList { get; set; }
|
|||
|
|
public DateTime FSoFromDate { get; set; }
|
|||
|
|
public DateTime FSoToDate { get; set; }
|
|||
|
|
|
|||
|
|
public string FSaleOFrom { get; set; }
|
|||
|
|
public string FSaleOTo { get; set; }
|
|||
|
|
public string FFormCloseStatus { get; set; }
|
|||
|
|
public string FFormStatus { get; set; }
|
|||
|
|
public string FPriceFrom { get; set; }
|
|||
|
|
public string FBusCloseStatus { get; set; }
|
|||
|
|
public bool FMergingSOHeader { get; set; }
|
|||
|
|
public bool FIncludedUnfilledOrders { get; set; }
|
|||
|
|
public bool FIsRecWithMat { get; set; }
|
|||
|
|
public string FSuite { get; set; }
|
|||
|
|
public string FSetAccountType { get; set; }
|
|||
|
|
public bool FIsGroup { get; set; }
|
|||
|
|
public bool FIncludedFree { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|