1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
package com.web.standard.entity;
 
 
import com.app.base.entity.BaseEntity;
import io.swagger.annotations.ApiModel;
import org.hibernate.annotations.DynamicUpdate;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
 
@Entity(name = "api_standard")
@Table(name = Standard.TABLE_NAME)
@DynamicUpdate
@ApiModel
public class Standard extends BaseEntity {
    private static final long serialVersionUID = 6944849575214769761L;
    public static final String TABLE_NAME = "api_standard";
 
    @Column
    private String bsCoce;
 
    @Column
    private String bsTitle;
 
    @Column
    private String bsName;
 
    /**
     * 模板
     */
    @Column
    private String bsTemplate;
 
    public String getBsCoce() {
        return bsCoce;
    }
 
    public void setBsCoce(String bsCoce) {
        this.bsCoce = bsCoce;
    }
 
    public String getBsTitle() {
        return bsTitle;
    }
 
    public void setBsTitle(String bsTitle) {
        this.bsTitle = bsTitle;
    }
 
    public String getBsName() {
        return bsName;
    }
 
    public void setBsName(String bsName) {
        this.bsName = bsName;
    }
 
    public String getBsTemplate() {
        return bsTemplate;
    }
 
    public void setBsTemplate(String bsTemplate) {
        this.bsTemplate = bsTemplate;
    }
}