admin
2024-05-27 816ba1e56476f0e23f51711aae4b34507a04a59c
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package com.ruoyi.system.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * AI学习批次对象 ai_study_batch
 *
 * @author ruoyi
 * @date 2023-03-07
 */
public class AiStudyBatch extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 学习Id */
    private Long id;
 
    /** 算法类型 */
    private Long ruleId;
 
    /** 名称 */
    @Excel(name = "名称")
    private String batchName;
 
    /** 版本 */
    @Excel(name = "版本")
    private String edition;
 
    /** 描述 */
    @Excel(name = "描述")
    private String remarks;
 
    /** 部门 */
    private String deptId;
 
    /** 学习状态 */
    private String batchState;
 
    /** 删除标记 */
    private Integer delFlag;
 
    /** 文件路径 */
    @Excel(name = "文件路径")
    private String fileName;
    /** 部门名称 */
    @Excel(name = "部门")
    private String deptName;
    /** 算法名称 */
    @Excel(name = "算法类型")
    private String ruleName;
    /**学习状态名称 */
    @Excel(name = "学习状态")
    private String batchStateName;
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
 
    public Long getRuleId() {
        return ruleId;
    }
 
    public void setRuleId(Long ruleId) {
        this.ruleId = ruleId;
    }
 
    public String getBatchName()
    {
        return batchName;
    }
    public void setEdition(String edition)
    {
        this.edition = edition;
    }
 
    public String getEdition()
    {
        return edition;
    }
    public void setRemarks(String remarks)
    {
        this.remarks = remarks;
    }
 
    public String getRemarks()
    {
        return remarks;
    }
    public void setDeptId(String deptId)
    {
        this.deptId = deptId;
    }
 
    public String getDeptId()
    {
        return deptId;
    }
    public void setBatchState(String batchState)
    {
        this.batchState = batchState;
    }
 
    public String getBatchState()
    {
        return batchState;
    }
    public void setDelFlag(Integer delFlag)
    {
        this.delFlag = delFlag;
    }
 
    public Integer getDelFlag()
    {
        return delFlag;
    }
    public void setFileName(String fileName)
    {
        this.fileName = fileName;
    }
 
    public String getFileName()
    {
        return fileName;
    }
 
    public String getDeptName() {
        return deptName;
    }
 
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
 
    public String getRuleName() {
        return ruleName;
    }
 
    public void setRuleName(String ruleName) {
        this.ruleName = ruleName;
    }
 
    public String getBatchStateName() {
        return batchStateName;
    }
 
    public void setBatchStateName(String batchStateName) {
        this.batchStateName = batchStateName;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("ruleId", getRuleId())
                .append("batchName", getBatchName())
                .append("edition", getEdition())
                .append("remarks", getRemarks())
                .append("deptId", getDeptId())
                .append("batchState", getBatchState())
                .append("delFlag", getDelFlag())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("fileName", getFileName())
                .toString();
    }
}