管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-26 0b5f8e36fb7eb0fd345250ea9664c65200e2dcd6
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.lf.server.entity.bd;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.lf.server.entity.all.BaseGeoEntity;
import lombok.*;
 
import java.math.BigDecimal;
import java.sql.Timestamp;
 
/**
 * Bhy20ws17
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("bd.b_hy20w_s17")
@EqualsAndHashCode(callSuper = false)
public class Bhy20ws17Entity extends BaseGeoEntity {
    private static final long serialVersionUID = 32399049975163788L;
 
    private String chfcac;
 
    private String swaf;
 
    private String swafm;
 
    private String swafa;
 
    private String m2sLegend;
 
    public Bhy20ws17Entity() {
    }
 
    public String getChfcac() {
        return chfcac;
    }
 
    public void setChfcac(String chfcac) {
        this.chfcac = chfcac;
    }
 
    public String getSwaf() {
        return swaf;
    }
 
    public void setSwaf(String swaf) {
        this.swaf = swaf;
    }
 
    public String getSwafm() {
        return swafm;
    }
 
    public void setSwafm(String swafm) {
        this.swafm = swafm;
    }
 
    public String getSwafa() {
        return swafa;
    }
 
    public void setSwafa(String swafa) {
        this.swafa = swafa;
    }
 
    public String getM2sLegend() {
        return m2sLegend;
    }
 
    public void setM2sLegend(String m2sLegend) {
        this.m2sLegend = m2sLegend;
    }
}