金蝶字段配置
This commit is contained in:
@@ -9,14 +9,21 @@ namespace WMS.Web.Core.Dto.Erp
|
||||
/// </summary>
|
||||
public class ErpBillQueryParamDto
|
||||
{
|
||||
public ErpBillQueryParamDto() { }
|
||||
|
||||
public ErpBillQueryParamDto(string formId)
|
||||
{
|
||||
this.FormId = formId;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 业务对象表单Id(必录)
|
||||
/// </summary>
|
||||
public string FormId { get; set; } = "STK_InStock";
|
||||
public string FormId { get; set; }
|
||||
/// <summary>
|
||||
/// 需查询的字段key集合,字符串类型,格式:"key1,key2,..."(必录) 注(查询单据体内码,需加单据体Key和下划线,如:FEntryKey_FEntryId)
|
||||
/// </summary>
|
||||
public string FieldKeys { get; set; } = "FBillNo,FUOM";
|
||||
public string FieldKeys { get; set; }
|
||||
/// <summary>
|
||||
/// 过滤条件,数组类型,如:[{"Left":"(","FieldName":"Field1","Compare":"=","Value":"111","Right":")","Logic":"AND"},{"Left":"(","FieldName":"Field2","Compare":"=","Value":"222","Right":")","Logic":""}]
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user