123456789101112131415161718192021222324252627282930 |
- 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 GetERPWrkGrpListRequest : ILJRequest<GetERPWrkGrpListResponse>
- {
- public override string GetApiName()
- {
- return "GetERPWrkGrpList";
- }
- /// <summary>
- /// 登录token
- /// </summary>
- public string token { get; set; }
- /// <summary>
- /// 单据id
- /// </summary>
- public int? wrkgrpid { get; set; }
- }
- public sealed class GetERPWrkGrpListResponse : LJResponse
- {
- public List<erp_sc_workgroup> workgroupList { get; set; }
- }
- }
|