123456789101112131415161718192021222324 |
- 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 UpdateL1BasicinfoRequest : ILJTokenRequest<UpdateL1BasicinfoResponse>
- {
- public override string GetApiName()
- {
- return "UpdateL1Basicinfo";
- }
- }
- public sealed class UpdateL1BasicinfoResponse : LJResponse
- {
- public int mtrlnum { get; set; }
- public int wkgnum { get; set; }
- public int mtrltypenum { get; set; }
- }
- }
|