ImportMtrlPriceByExcel.cs 767 B

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