1234567891011121314151617181920212223242526272829 |
- 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 AuditWorkmanshipRequest : ILJTokenRequest<AuditWorkmanshipResponse>
- {
- public override string GetApiName()
- {
- return "AuditWorkmanship";
- }
- /// <summary>
- /// 部门id
- /// </summary>
- public List<u_workmanship_add> list { get; set; }
- /// <summary>
- /// 0 - 审核 1 - 撤审 2 - 反禁用 3 - 禁用
- /// </summary>
- public int type { get; set; }
- }
- public sealed class AuditWorkmanshipResponse : LJResponse
- {
- }
- }
|