SalesOrderEntryEntityInfoModel.java 1021 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package jnpf.model.salesorder;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. /**
  6. * 销售订单
  7. *
  8. * @author JNPF开发平台组
  9. * @version V3.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date 2021/3/15 8:46
  12. */
  13. @Data
  14. public class SalesOrderEntryEntityInfoModel {
  15. @Schema(description = "发货明细主键")
  16. private String id;
  17. @Schema(description = "订单主键")
  18. private String salesOrderId;
  19. @Schema(description = "商品名称")
  20. private String goodsName;
  21. @Schema(description = "规格型号")
  22. private String specifications;
  23. @Schema(description = "单位")
  24. private String unit;
  25. @Schema(description = "数量")
  26. private BigDecimal qty;
  27. @Schema(description = "单价")
  28. private BigDecimal price;
  29. @Schema(description = "金额")
  30. private BigDecimal amount;
  31. @Schema(description = "描述")
  32. private String description;
  33. @Schema(description = "排序码")
  34. private Long sortCode;
  35. }