积分模块相关接口
This commit is contained in:
@@ -106,11 +106,13 @@
|
||||
<version>6.1.4</version>
|
||||
</dependency>
|
||||
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>org.mybatis.spring.boot</groupId>
|
||||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||||
<version>2.1.4</version>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>com.baomidou</groupId>-->
|
||||
@@ -120,12 +122,12 @@
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-generator</artifactId>
|
||||
<version>3.5.3.1</version>
|
||||
<version>3.5.7</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||||
<version>3.5.3.1</version>
|
||||
<version>3.5.7</version>
|
||||
</dependency>
|
||||
|
||||
<!-- zxing生成二维码 -->
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package cn.ysk.cashier.mybatis.entity;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
@@ -39,7 +40,7 @@ public class TbPointsGoodsSetting {
|
||||
/**
|
||||
* 商品图片URL
|
||||
*/
|
||||
@TableField(updateStrategy = FieldStrategy.ALWAYS)
|
||||
@TableField(value = "goods_image_url", updateStrategy = FieldStrategy.ALWAYS)
|
||||
private String goodsImageUrl;
|
||||
/**
|
||||
* 所需积分
|
||||
@@ -60,7 +61,7 @@ public class TbPointsGoodsSetting {
|
||||
/**
|
||||
* 商品详情
|
||||
*/
|
||||
@TableField(updateStrategy = FieldStrategy.ALWAYS)
|
||||
@TableField(value = "goods_description", updateStrategy = FieldStrategy.ALWAYS)
|
||||
private String goodsDescription;
|
||||
/**
|
||||
* 是否上架 1-是 0-否
|
||||
|
||||
Reference in New Issue
Block a user