123456789101112131415161718192021222324252627 |
- 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 ReCalculateERPCostRequest : ILJRequest<ReCalculateERPCostResponse>
- {
- public override string GetApiName()
- {
- return "ReCalculateERPCost";
- }
- public string token { get; set; }
- /// <summary>
- /// 床垫信息:主表
- /// </summary>
- public List<u_mattress> list { get; set; }
- }
- public sealed class ReCalculateERPCostResponse : LJResponse
- {
- public string logMsg { get; set; }
- }
- }
|