记得上下班打卡 | git大法好,push需谨慎

Commit 9039b9bd authored by zhengfuxin's avatar zhengfuxin

修改关键字 导致查询问题。

parent bf40fc28
package com.liquidnet.service.goblin.entity; package com.liquidnet.service.goblin.entity;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/** /**
* <p> * <p>
...@@ -40,6 +40,7 @@ public class GoblinMix implements Serializable { ...@@ -40,6 +40,7 @@ public class GoblinMix implements Serializable {
/** /**
* 混合名称 * 混合名称
*/ */
@TableField(value = "`name`")
private String name; private String name;
/** /**
...@@ -55,6 +56,7 @@ public class GoblinMix implements Serializable { ...@@ -55,6 +56,7 @@ public class GoblinMix implements Serializable {
/** /**
* 状态[6-启用|7-停用] * 状态[6-启用|7-停用]
*/ */
@TableField(value = "`status`")
private Integer status; private Integer status;
/** /**
...@@ -120,6 +122,7 @@ public class GoblinMix implements Serializable { ...@@ -120,6 +122,7 @@ public class GoblinMix implements Serializable {
/** /**
* 限购数量[0-不限购] * 限购数量[0-不限购]
*/ */
@TableField(value = "`limit`")
private Integer limit; private Integer limit;
/** /**
...@@ -150,6 +153,7 @@ public class GoblinMix implements Serializable { ...@@ -150,6 +153,7 @@ public class GoblinMix implements Serializable {
/** /**
* 补充字段 * 补充字段
*/ */
@TableField(value = "`comment`")
private String comment; private String comment;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment