Digital Office Automation System Backend
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.

ZsOperationGoods.java 886B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.ruoyi.system.domain;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. /**
  6. * 商品配置对象 zs_operation_goods
  7. *
  8. * @author 王强
  9. * @date 2025-05-08
  10. */
  11. @Data
  12. @TableName("zs_operation_goods")
  13. public class ZsOperationGoods {
  14. private static final long serialVersionUID=1L;
  15. /**
  16. * 主键ID
  17. */
  18. @TableId(value = "id")
  19. private Long id;
  20. /**
  21. * 商品名字
  22. */
  23. private String goodsSkuName;
  24. /**
  25. * 商品编号
  26. */
  27. private String goodsSkuSn;
  28. /**
  29. * 商品url
  30. */
  31. private String goodsSkuUrl;
  32. /**
  33. * 平台
  34. */
  35. private String platform;
  36. /**
  37. * 基准价格
  38. */
  39. private BigDecimal initPrice;
  40. /**
  41. * 备注
  42. */
  43. private String remark;
  44. /**
  45. * 是否启用
  46. */
  47. private String isDisabled;
  48. }