无关风月
2025-05-08 9486766c806fe1d9e082b2fd02ea1cc558f1b443
cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/TStore.java
@@ -1,32 +1,54 @@
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(value = "id", type = IdType.INPUT)
    private Integer id;
    @TableField("name")
    private String name;
    @TableField("storeStaffId")
    private Integer storeStaffId;
    @TableField("cityManagerId")
    private Integer cityManagerId;
    private String province;
    @TableField("provinceCode")
    private String provinceCode;
    private String city;
    @TableField("cityCode")
    private String cityCode;
    private String phone;
    private String address;
    private String lat;
    private String lon;
    @TableField("startTime")
    private String startTime;
    @TableField("endTime")
    private String endTime;
    @TableField("coverDrawing")
    private String coverDrawing;
    @TableField("realPicture")
    private String realPicture;
    private String introduce;
    @TableField("welfarePicture")
    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;
}