using System.Collections.Generic; using JLHHJSvr.Com.Model; using LJLib.Net.SPI.Com; namespace JLHHJSvr.Com { public sealed class BatchModifyMattressInterfaceConfigRequest : ILJTokenRequest { public override string GetApiName() { return "BatchModifyMattressInterfaceConfig"; } public List 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 items { get; set; } } }