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 DeleteMtrlTypeRequest : ILJRequest<DeleteMtrlTypeResponse>
- {
- public string GetApiName()
- {
- return "DeleteMtrlType";
- }
- /// <summary>
- /// 登录token
- /// </summary>
- public string token { get; set; }
- /// <summary>
- /// 物料类别id
- /// </summary>
- public List<u_mtrltype> list { get; set; }
- }
- public sealed class DeleteMtrlTypeResponse : LJResponse
- {
- }
- }
|