using System; using System.Collections.Generic; using System.Linq; using System.Text; using JLHHJSvr.Com.Model; using LJLib.Net.SPI.Com; namespace JLHHJSvr.Com { public sealed class GetERPMtrldefListRequest : ILJRequest { public override string GetApiName() { return "GetERPMtrldefList"; } /// /// 登录token /// public string token { get; set; } public int? mtrlid { get; set; } public int? storageid { get; set; } /// /// 属性 /// public int? mtrlprp { get; set; } /// /// 物料类别 /// public int? mtrltypeid { get; set; } public int? mtrlorigin { get; set; } public int? isuse { get; set; } public string keyword { get; set; } public string mtrlname { get; set; } public string mtrlcode { get; set; } public string mtrlmode { get; set; } public string mtrlsectype { get; set; } public string zxmtrlmode { get; set; } public string usermtrlmode { get; set; } public string plancode { get; set; } public int pageindex { get; set; } public int pagesize { get; set; } /// /// 产品类别 /// public string mtrltype { get; set; } /// /// 1-只返回重要字段 /// public int simpleField { get; set; } } public sealed class GetERPMtrldefListResponse : LJResponse { public List mtrldefList { get; set; } public int pageindex { get; set; } public int pagesize { get; set; } public int totalcnt { get; set; } } }