add old netty frameWork
This commit is contained in:
24
entity/src/main/java/com/sv/dto/EnterResult.java
Normal file
24
entity/src/main/java/com/sv/dto/EnterResult.java
Normal file
@@ -0,0 +1,24 @@
|
||||
package com.sv.dto;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class EnterResult {
|
||||
private Integer status;
|
||||
private BigDecimal money;
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public BigDecimal getMoney() {
|
||||
return money;
|
||||
}
|
||||
|
||||
public void setMoney(BigDecimal money) {
|
||||
this.money = money;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user