From 41c07e4558ed3a1cbdda0711f78cd3a812c06829 Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期四, 28 九月 2023 18:34:25 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/TStore.java | 11 ++++++++++- 1 files changed, 10 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..2881577 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,6 +1,8 @@ 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; @@ -9,7 +11,9 @@ @TableName("t_store") @Data public class TStore { + @TableId(type = IdType.AUTO) private Integer id; + @TableField("name") private String name; @TableField("storeStaffId") private Integer storeStaffId; @@ -38,5 +42,10 @@ private String welfarePicture; private BigDecimal score; private Integer state; - + @TableField("operatorId") + private Integer operatorId; + @TableField("type") + private Integer type; + @TableField("ids") + private String ids; } -- Gitblit v1.7.1