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.

34 lines
538 B

4 weeks ago
  1. package com.xujie.modules.supplier.data;
  2. import lombok.Data;
  3. import java.math.BigDecimal;
  4. /**
  5. * @Description 供应商可供物料与MOQ数据 - rqrq
  6. * @author rqrq
  7. * @date 2026/07/14
  8. */
  9. @Data
  10. public class SupplierPartMoqPriceVo {
  11. private Integer id;
  12. private String site;
  13. private String supplierCode;
  14. private String supplierName;
  15. private String partNo;
  16. private String partDesc;
  17. private BigDecimal moq;
  18. private String currency;
  19. private String currencyDesc;
  20. private String active;
  21. }