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 SaveMattressBcpRequest : ILJRequest<SaveMattressBcpResponse>
- {
- public override string GetApiName()
- {
- return "SaveMattressBcp";
- }
- public string token { get; set; }
- /// <summary>
- /// 半成品信息:主表
- /// </summary>
- public u_semi_finished_product mattress { get; set; }
- }
- public sealed class SaveMattressBcpResponse : LJResponse
- {
- public u_semi_finished_product mattress { get; set; }
- }
- }
|