ProductGoodsEntity.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package jnpf.entity;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import jnpf.base.entity.SuperExtendEntity;
  6. import lombok.Data;
  7. /**
  8. * 产品商品
  9. *
  10. * @版本: V3.1.0
  11. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  12. * @作者: JNPF开发平台组
  13. * @日期: 2021-07-10 15:57:50
  14. */
  15. @Data
  16. @TableName("ext_product_goods")
  17. public class ProductGoodsEntity extends SuperExtendEntity<String> {
  18. /**
  19. * 分类主键
  20. */
  21. @TableField("F_CLASSIFY_ID")
  22. private String classifyId;
  23. /**
  24. * 产品编号
  25. */
  26. @TableField("F_EN_CODE")
  27. @JSONField(name = "code")
  28. private String enCode;
  29. /**
  30. * 产品名称
  31. */
  32. @TableField("F_FULL_NAME")
  33. private String fullName;
  34. /**
  35. * 订货类型
  36. */
  37. @TableField("F_TYPE")
  38. private String type;
  39. /** 产品规格 */
  40. @TableField("F_PRODUCT_SPECIFICATION")
  41. private String productSpecification;
  42. /** 单价 */
  43. @TableField("F_MONEY")
  44. private String money;
  45. /**
  46. * 库存数
  47. */
  48. @TableField("F_QTY")
  49. private Integer qty;
  50. /** 金额 */
  51. @TableField("F_AMOUNT")
  52. private String amount;
  53. }