12345678910111213141516171819202122 |
- using LJLib.Net.SPI.Com;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JLHHJSvr.Com
- {
- public class ImportMtrlPriceByExcelRequest : ILJRequest<ImportMtrlPriceByExcelResponse>
- {
- public string token { get; set; }
- public string base64 { get; set; }
- public byte[] filedata { get; set; }
- public string filename { get; set; }
- public override string GetApiName()
- {
- return "ImportMtrlPriceByExcel";
- }
- }
- public class ImportMtrlPriceByExcelResponse : LJResponse { }
- }
|