ImportMtrlPriceByExcel.cs 625 B

12345678910111213141516171819202122
  1. using LJLib.Net.SPI.Com;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JLHHJSvr.Com
  8. {
  9. public class ImportMtrlPriceByExcelRequest : ILJRequest<ImportMtrlPriceByExcelResponse>
  10. {
  11. public string token { get; set; }
  12. public string base64 { get; set; }
  13. public byte[] filedata { get; set; }
  14. public string filename { get; set; }
  15. public override string GetApiName()
  16. {
  17. return "ImportMtrlPriceByExcel";
  18. }
  19. }
  20. public class ImportMtrlPriceByExcelResponse : LJResponse { }
  21. }