add old netty frameWork
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
group 'SmartVenue'
|
||||
group 'smartvenue'
|
||||
version '1.0-SNAPSHOT'
|
||||
ext {
|
||||
springBootVersion = '1.5.7.RELEASE'
|
||||
@@ -84,4 +84,4 @@ buildscript {
|
||||
dependencies {
|
||||
classpath("gradle.plugin.com.arenagod.gradle:mybatis-generator-plugin:1.4")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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