liujie
2023-07-26 c218e21cfab0b7400961e80506f09499319f9aa8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.dsh.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
@TableName("t_store")
@Data
public class TStore {
    private Integer id;
    private String name;
    private Integer storeStaffId;
    private Integer cityManagerId;
    private String province;
    private String provinceCode;
    private String city;
    private String cityCode;
    private String phone;
    private String address;
    private String lat;
    private String lon;
    private String startTime;
    private String endTime;
    private String coverDrawing;
    private String realPicture;
    private String introduce;
    private String welfarePicture;
    private BigDecimal score;
    private Integer state;
 
}