add old netty frameWork

This commit is contained in:
limqhz
2021-02-24 11:33:45 +08:00
parent 29262fa342
commit e6bc99430f
57 changed files with 4198 additions and 104 deletions

View File

@@ -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")
}
}
}

View 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;
}
}