1234567891011121314151617181920212223242526 |
- 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 {
- public List<string> messageList { get; set; }
- public int successqty { get; set; }
- public int allqty { get; set; }
- }
- }
|