OrderInfoOrderEntryModel.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package jnpf.model.order;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 订单信息
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021/3/15 8:46
  11. */
  12. @Data
  13. public class OrderInfoOrderEntryModel {
  14. @Schema(description ="订单日期")
  15. private String remove;
  16. @Schema(description ="自然主键")
  17. private String id;
  18. @Schema(description ="商品Id")
  19. private String goodsId;
  20. @Schema(description ="商品编码")
  21. private String goodsCode;
  22. @Schema(description ="商品名称")
  23. private String goodsName;
  24. @Schema(description ="规格型号")
  25. private String specifications;
  26. @Schema(description ="单位")
  27. private String unit;
  28. @Schema(description ="数量")
  29. private String qty;
  30. @Schema(description ="单价")
  31. private String price;
  32. @Schema(description ="金额", example = "1")
  33. private int amount;
  34. @Schema(description =" 折扣%", example = "1")
  35. private int discount;
  36. @Schema(description =" 税率%")
  37. private String cess;
  38. @Schema(description ="实际单价")
  39. private String actualPrice;
  40. @Schema(description ="实际金额")
  41. private String actualAmount;
  42. @Schema(description ="描述")
  43. private String description;
  44. @Schema(description ="排序", example = "1")
  45. private int sortCode;
  46. }