12345678910111213141516171819202122232425 |
- 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 SaveErpMtrlPriceListRequest : ILJTokenRequest<SaveErpMtrlPriceListResponse>
- {
- public override string GetApiName()
- {
- return "SaveErpMtrlPriceList";
- }
- /// <summary>
- /// 物料资料定义
- /// </summary>
- public List<u_erpmtrl_price> mtrldefList { get; set; }
- }
- public sealed class SaveErpMtrlPriceListResponse : LJResponse
- {
- }
- }
|