using System.Collections.Generic; using JLHHJSvr.Com.Model; using LJLib.Net.SPI.Com; namespace JLHHJSvr.Com { /// /// 获取所有材料价 /// public sealed class JLH_FetchPriceRequest: ILJRequest { public string token { get; set; } public override string GetApiName() { return "JLH_FetchPrice"; } } public sealed class JLH_FetchPriceResponse : LJResponse { /// /// 只有mtrlcode与price内容 /// public List list { get; set; } } }