纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
672 B

3 years ago
3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. /// <summary>
  8. /// 获取条码信息输入信息
  9. /// </summary>
  10. public class BarCodeModel
  11. {
  12. public string Code { get; set; }
  13. public string TransType { get; set; }
  14. public string WorkPoint { get; set; }
  15. /// <summary>
  16. /// 源头单据
  17. /// </summary>
  18. public string TransCode { get; set; }
  19. /// <summary>
  20. /// 用于排除本次已扫描的条码(多个用'',分割,如:'001','002')
  21. /// </summary>
  22. public string ScanLotCode { get; set; }
  23. }
  24. }