liujie
2023-09-28 41c07e4558ed3a1cbdda0711f78cd3a812c06829
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;
}