1234567891011121314151617181920212223242526 |
- 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 SaveMtrlTypeRequest : ILJRequest<SaveMtrlTypeResponse>
- {
- public string GetApiName()
- {
- return "SaveMtrlType";
- }
- public string token { get; set; }
- /// <summary>
- /// 物料类别定义
- /// </summary>
- public u_mtrltype mtrltype { get; set; }
- }
- public sealed class SaveMtrlTypeResponse : LJResponse
- {
- }
- }
|