Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
74f59561
Commit
74f59561
authored
Feb 23, 2020
by
季圣华
Browse files
升级lombok
parent
535b853d
Changes
2
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
74f59561
...
...
@@ -77,7 +77,7 @@
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
1.1
6
.12
</version>
<version>
1.1
8
.12
</version>
</dependency>
<!-- 日志 -->
<dependency>
...
...
src/main/java/com/jsh/erp/datasource/entities/DepotEx.java
View file @
74f59561
package
com.jsh.erp.datasource.entities
;
import
lombok.Data
;
import
java.math.BigDecimal
;
/**
...
...
@@ -8,25 +10,11 @@ import java.math.BigDecimal;
* @Author: cjl
* @Date: 2019/2/25 11:40
*/
@Data
public
class
DepotEx
extends
Depot
{
//负责人名字
private
String
principalName
;
private
BigDecimal
stock
;
public
String
getPrincipalName
()
{
return
principalName
;
}
public
void
setPrincipalName
(
String
principalName
)
{
this
.
principalName
=
principalName
;
}
public
BigDecimal
getStock
()
{
return
stock
;
}
public
void
setStock
(
BigDecimal
stock
)
{
this
.
stock
=
stock
;
}
}
Write
Preview
Supports
Markdown
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