4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
75
76
77
78
79
80
81
82
83
84
85
package com.dev.entity;
 
import com.app.base.entity.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.hibernate.annotations.DynamicUpdate;
 
import javax.persistence.*;
import java.util.Date;
 
/**
 * 报表
 *
 */
@Entity(name = "ApiCode")
@Table(name = ApiCode.TABLE_NAME)
@DynamicUpdate
@ApiModel
public class ApiCode extends BaseEntity {
    private static final long serialVersionUID = 4625660587007894370L;
    public static final String TABLE_NAME = "api_code";
 
    /**
     * 编号
     */
    @ApiModelProperty(name = "bsCode", value = "编号")
    @Column(length = 20)
    protected String bsCode;
 
    /**
     * 名称
     */
    @ApiModelProperty(name = "bsName", value = "名称")
    @Column(length = 30)
    protected String bsName;
 
    /**
     * 描述
     */
    @ApiModelProperty(name = "bsDes", value = "描述")
    @Column(length = 500)
    protected String bsDes;
    
    /**
     * 状态
     */
    @ApiModelProperty(name = "bsStatus", value = "状态")
    @Column(length = 500)
    protected Integer bsStatus;
 
    public String getBsCode() {
        return bsCode;
    }
 
    public void setBsCode(String bsCode) {
        this.bsCode = bsCode;
    }
 
    public String getBsName() {
        return bsName;
    }
 
    public void setBsName(String bsName) {
        this.bsName = bsName;
    }
 
    public String getBsDes() {
        return bsDes;
    }
 
    public void setBsDes(String bsDes) {
        this.bsDes = bsDes;
    }
 
    public Integer getBsStatus() {
        return bsStatus;
    }
 
    public void setBsStatus(Integer bsStatus) {
        this.bsStatus = bsStatus;
    }
 
    
}