Sfoglia il codice sorgente

增加添加站点对外接口

Jack 11 mesi fa
parent
commit
8428cedad6

+ 12 - 14
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/site/entity/OkkiSite.java

@@ -1,22 +1,20 @@
 package org.jeecg.modules.api.okki.site.entity;
 
-import java.io.Serializable;
-import java.io.UnsupportedEncodingException;
-import java.util.Date;
-import java.math.BigDecimal;
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
-import lombok.Data;
 import com.fasterxml.jackson.annotation.JsonFormat;
-import org.springframework.format.annotation.DateTimeFormat;
-import org.jeecgframework.poi.excel.annotation.Excel;
-import org.jeecg.common.aspect.annotation.Dict;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
 import lombok.EqualsAndHashCode;
 import lombok.experimental.Accessors;
+import org.jeecg.common.aspect.annotation.Dict;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.util.Date;
 
 /**
  * @Description: 站点
@@ -55,11 +53,11 @@ public class OkkiSite implements Serializable {
 	/**站点id*/
 	@Excel(name = "站点id", width = 15)
     @ApiModelProperty(value = "站点id")
-    private Integer siteId;
+    private Integer site_id;
 	/**公司名称*/
 	@Excel(name = "公司名称", width = 15)
     @ApiModelProperty(value = "公司名称")
-    private String companyName;
+    private String company_name;
 	/**初始化的域名*/
 	@Excel(name = "初始化的域名", width = 15)
     @ApiModelProperty(value = "初始化的域名")
@@ -83,15 +81,15 @@ public class OkkiSite implements Serializable {
 	/**套餐名*/
 	@Excel(name = "套餐名", width = 15)
     @ApiModelProperty(value = "套餐名")
-    private String tcName;
+    private String tc_name;
 	/**套餐周期,单位⽉*/
 	@Excel(name = "套餐周期,单位⽉", width = 15)
     @ApiModelProperty(value = "套餐周期,单位⽉")
-    private Integer tcPeriod;
+    private Integer tc_period;
 	/**站点选择的⼩语种语⾔*/
 	@Excel(name = "站点选择的⼩语种语⾔", width = 15)
     @ApiModelProperty(value = "站点选择的⼩语种语⾔")
-    private String tcLanguage;
+    private String tc_language;
 	/**备注*/
 	@Excel(name = "备注", width = 15)
     @ApiModelProperty(value = "备注")