| 123456789101112131415161718192021222324252627282930 |
- using System.Collections.Generic;
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class BatchModifyMattressInterfaceConfigRequest : ILJTokenRequest<BatchModifyMattressInterfaceConfigResponse>
- {
- public override string GetApiName()
- {
- return "BatchModifyMattressInterfaceConfig";
- }
- public List<int> list { get; set; }
- public int configcodetype { get; set; }
- public int erp_pzid { get; set; }
- public string bj_pzname { get; set; }
- public string new_bj_namemx { get; set; }
- }
- public sealed class BatchModifyMattressInterfaceConfigResponse : LJResponse
- {
- public int taskid { get; set; }
- public int totalCount { get; set; }
- public int successCount { get; set; }
- public int skipCount { get; set; }
- public int failCount { get; set; }
- public List<u_task_log_mx> items { get; set; }
- }
- }
|