Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
K
klck
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
位宇华
klck
Commits
072d630c
Commit
072d630c
authored
Jul 14, 2023
by
lvzhuangzhuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a4790d0f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
72 deletions
+22
-72
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysSupplies.java
...em/src/main/java/com/ruoyi/system/domain/SysSupplies.java
+22
-72
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysSupplies.java
View file @
072d630c
...
...
@@ -18,99 +18,49 @@ public class SysSupplies extends BaseEntity
/** ID */
private
Long
id
;
/** 关联ID */
@Excel
(
name
=
"关联ID"
)
private
Long
detId
;
/** name*/
public
String
getTemplateName
()
{
return
templateName
;
}
public
void
setTemplateName
(
String
templateName
)
{
this
.
templateName
=
templateName
;
}
/** Excel文件名 */
@Excel
(
name
=
"Excel文件名"
)
private
String
templateName
;
/** 内容 */
@Excel
(
name
=
"内容"
)
private
String
templateContent
;
/** 状态 */
@Excel
(
name
=
"状态"
)
private
Long
status
;
private
String
sname
;
private
String
sysclassify
;
public
String
getSname
()
{
return
sname
;
}
public
void
setSname
(
String
sname
)
{
this
.
sname
=
sname
;
}
private
String
name
;
public
String
getSysclassify
()
{
return
sysclassify
;
}
/** name*/
public
void
setSysclassify
(
String
sysclassify
)
{
this
.
sysclassify
=
sysclassify
;
}
private
String
jsons
;
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
public
static
long
getSerialVersionUID
()
{
return
serialVersionUID
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
id
;
}
public
void
setDetId
(
Long
detId
)
{
this
.
detId
=
detId
;
}
public
Long
getDetId
()
{
return
detId
;
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
get
TemplateContent
()
{
return
templateContent
;
public
String
get
Name
()
{
return
name
;
}
public
void
set
TemplateContent
(
String
templateContent
)
{
this
.
templateContent
=
templateContent
;
public
void
set
Name
(
String
name
)
{
this
.
name
=
name
;
}
public
void
setStatus
(
Long
status
)
{
this
.
status
=
status
;
public
String
getJsons
()
{
return
jsons
;
}
public
Long
getStatus
()
{
return
status
;
public
void
setJsons
(
String
jsons
)
{
this
.
jsons
=
jsons
;
}
@Override
public
String
toString
()
{
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
.
append
(
"id"
,
getId
())
.
append
(
"detId"
,
getDetId
())
.
append
(
"name"
,
getTemplateName
())
.
append
(
"content"
,
getTemplateContent
())
.
append
(
"status"
,
getStatus
())
.
append
(
"createBy"
,
getCreateBy
())
.
append
(
"createTime"
,
getCreateTime
())
.
append
(
"updateBy"
,
getUpdateBy
())
.
append
(
"updateTime"
,
getUpdateTime
())
.
toString
();
return
"SysSupplies{"
+
"id="
+
id
+
", name='"
+
name
+
'\''
+
", jsons='"
+
jsons
+
'\''
+
'}'
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment