using System.Collections.Generic; using JLHHJSvr.Com.Model; using LJLib.Net.SPI.Com; namespace JLHHJSvr.Com { public sealed class AuditSoftBedQuoteRequest : ILJRequest { public override string GetApiName() { return "AuditSoftBedQuote"; } /// /// 登录token /// public string token { get; set; } /// /// /// public List list { get; set; } /// /// 0 - 撤审 1 - 审核 /// public byte type { get; set; } } public sealed class AuditSoftBedQuoteResponse : LJResponse { } }