123456789101112131415161718192021222324 |
- 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 UpdateMtrlPriceRequest : ILJRequest<UpdateMtrlPriceResponse>
- {
- public override string GetApiName()
- {
- return "UpdateMtrlPrice";
- }
- public string token { get; set; }
- public int mattressid { get; set; }
- }
- public sealed class UpdateMtrlPriceResponse : LJResponse
- {
- public u_mattress mattress { get; set; }
- }
- }
|