BarCodeRequest.cs 490 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMS.Info
  7. {
  8. public class BarCodeRequest
  9. {
  10. public string F_prefix { get; set; }
  11. public string F_suffix { get; set; }
  12. public int F_code { get; set; }
  13. public int F_length { get; set; }
  14. public char F_replenish { get; set; }
  15. public int F_barType { get; set; }
  16. public int F_maxNum { get; set; }
  17. }
  18. }