1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package com.ruoyi.system.domain;
-
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
-
- import java.math.BigDecimal;
-
-
-
- /**
- * 商品配置对象 zs_operation_goods
- *
- * @author 王强
- * @date 2025-05-08
- */
- @Data
- @TableName("zs_operation_goods")
- public class ZsOperationGoods {
-
- private static final long serialVersionUID=1L;
-
- /**
- * 主键ID
- */
- @TableId(value = "id")
- private Long id;
- /**
- * 商品名字
- */
- private String goodsSkuName;
- /**
- * 商品编号
- */
- private String goodsSkuSn;
- /**
- * 商品url
- */
- private String goodsSkuUrl;
- /**
- * 平台
- */
- private String platform;
- /**
- * 基准价格
- */
- private BigDecimal initPrice;
- /**
- * 备注
- */
- private String remark;
- /**
- * 是否启用
- */
- private String isDisabled;
-
- }
|