yangys
2024-10-30 c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec
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
package com.qianwen.smartman.modules.smis.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.qianwen.core.mp.base.BaseEntity;
import com.qianwen.core.tenant.mp.TenantEntity;
 
import io.swagger.annotations.ApiModelProperty;
 
 
/**
 * 采集模板
 */
@TableName("collect_template")
public class CollectTemplate  extends BaseEntity {
    private static final long serialVersionUID = 1;
    @ApiModelProperty("模板名称")
    private String name;
    
    @ApiModelProperty("模板类型")
    private Integer type;
    
    @ApiModelProperty("点位配置(json数组)")
    private String dpConfig;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getDpConfig() {
        return dpConfig;
    }
 
    public void setDpConfig(String dpConfig) {
        this.dpConfig = dpConfig;
    }
 
    
}