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.

23 lines
532 B

7 months ago
  1. package com.gaotao.modules.trans.entity;
  2. import jakarta.persistence.*;
  3. import lombok.Data;
  4. @Data
  5. public class TransDetail {
  6. private String site;
  7. private String transNo;
  8. private Double itemNo;
  9. private String partNo;
  10. private Double transQty;
  11. private String batchNo;
  12. private String warehouseId;
  13. private String direction;
  14. private String orderRef1;
  15. private String orderRef2;
  16. private String orderRef3;
  17. private String orderRef4;
  18. private String orderRef5;
  19. private String remark;
  20. }