From 12ff8c3fdf75d11d4a26fb83849238be633f1fba Mon Sep 17 00:00:00 2001 From: nickchange <126672920+nickchange@users.noreply.github.com> Date: 星期五, 08 十二月 2023 17:18:15 +0800 Subject: [PATCH] 后台添加购课记录价格bug2 --- cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/TStore.java | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/TStore.java b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/TStore.java index 74a4f1d..6b71bf1 100644 --- a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/TStore.java +++ b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/TStore.java @@ -1,15 +1,20 @@ package com.dsh.guns.modular.system.model; +import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.math.BigDecimal; +import java.util.Date; @TableName("t_store") @Data public class TStore { + @TableId(type = IdType.INPUT) private Integer id; + @TableField("name") private String name; @TableField("storeStaffId") private Integer storeStaffId; @@ -38,5 +43,12 @@ private String welfarePicture; private BigDecimal score; private Integer state; - + @TableField("operatorId") + private Integer operatorId; + @TableField("type") + private Integer type; + @TableField("ids") + private String ids; + @TableField("createTime") + private Date createTime; } -- Gitblit v1.7.1