|
|
@@ -48,7 +48,7 @@ import io.swagger.v3.oas.annotations.enums.ParameterIn;
|
|
|
/**
|
|
|
* 展位管理控制层
|
|
|
* @author 阿白
|
|
|
-* 创建日期:2025年10月23日 下午6:08:01<br/>
|
|
|
+* 创建日期:2025年10月23日 下午6:41:34<br/>
|
|
|
* 历史修订:<br/>
|
|
|
*/
|
|
|
@Tag(name = "后台-展位接口")
|
|
|
@@ -90,7 +90,7 @@ public class BoothAction extends net.mingsoft.tf.action.BaseAction{
|
|
|
@Operation(summary = "查询展位列表接口")
|
|
|
@Parameters({
|
|
|
@Parameter(name = "boothCode", description = "编码", in = ParameterIn.QUERY),
|
|
|
- @Parameter(name = "inputHudra", description = "楼层", in = ParameterIn.QUERY),
|
|
|
+ @Parameter(name = "boothFloor", description = "楼层", in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothName", description = "名称", in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothStyle", description = "风格", in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothMaterials", description = "材料", in = ParameterIn.QUERY),
|
|
|
@@ -137,7 +137,7 @@ public class BoothAction extends net.mingsoft.tf.action.BaseAction{
|
|
|
@Operation(summary = "保存展位列表接口")
|
|
|
@Parameters({
|
|
|
@Parameter(name = "boothCode", description = "编码", required = true, in = ParameterIn.QUERY),
|
|
|
- @Parameter(name = "inputHudra", description = "楼层", required = true, in = ParameterIn.QUERY),
|
|
|
+ @Parameter(name = "boothFloor", description = "楼层", required = true, in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothName", description = "名称", required = false, in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothStyle", description = "风格", required = false, in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothMaterials", description = "材料", required = false, in = ParameterIn.QUERY),
|
|
|
@@ -161,11 +161,11 @@ public class BoothAction extends net.mingsoft.tf.action.BaseAction{
|
|
|
return ResultData.build().error(getResString("err.length", this.getResString("booth.code"), "0", "255"));
|
|
|
}
|
|
|
//验证楼层的值是否合法
|
|
|
- if (StringUtils.isBlank(booth.getInputHudra())) {
|
|
|
- return ResultData.build().error(getResString("err.empty", this.getResString("input.hudra")));
|
|
|
+ if (StringUtils.isBlank(booth.getBoothFloor())) {
|
|
|
+ return ResultData.build().error(getResString("err.empty", this.getResString("booth.floor")));
|
|
|
}
|
|
|
- if (!StringUtil.checkLength(booth.getInputHudra()+"", 0, 255)) {
|
|
|
- return ResultData.build().error(getResString("err.length", this.getResString("input.hudra"), "0", "255"));
|
|
|
+ if (!StringUtil.checkLength(booth.getBoothFloor()+"", 0, 255)) {
|
|
|
+ return ResultData.build().error(getResString("err.length", this.getResString("booth.floor"), "0", "255"));
|
|
|
}
|
|
|
if ( StringUtils.isNotBlank(booth.getBoothName()) && !StringUtil.checkLength(booth.getBoothName()+"", 0, 255)) {
|
|
|
return ResultData.build().error(getResString("err.length", this.getResString("booth.name"), "0", "255"));
|
|
|
@@ -208,7 +208,7 @@ public class BoothAction extends net.mingsoft.tf.action.BaseAction{
|
|
|
@Parameters({
|
|
|
@Parameter(name = "id", description = "主键ID", required =true,in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothCode", description = "编码", required = true, in = ParameterIn.QUERY),
|
|
|
- @Parameter(name = "inputHudra", description = "楼层", required = true, in = ParameterIn.QUERY),
|
|
|
+ @Parameter(name = "boothFloor", description = "楼层", required = true, in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothName", description = "名称", required = false, in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothStyle", description = "风格", required = false, in = ParameterIn.QUERY),
|
|
|
@Parameter(name = "boothMaterials", description = "材料", required = false, in = ParameterIn.QUERY),
|
|
|
@@ -237,11 +237,11 @@ public class BoothAction extends net.mingsoft.tf.action.BaseAction{
|
|
|
return ResultData.build().error(getResString("err.length", this.getResString("booth.code"), "0", "255"));
|
|
|
}
|
|
|
//验证楼层的值是否合法
|
|
|
- if (StringUtils.isBlank(booth.getInputHudra())) {
|
|
|
- return ResultData.build().error(getResString("err.empty", this.getResString("input.hudra")));
|
|
|
+ if (StringUtils.isBlank(booth.getBoothFloor())) {
|
|
|
+ return ResultData.build().error(getResString("err.empty", this.getResString("booth.floor")));
|
|
|
}
|
|
|
- if (!StringUtil.checkLength(booth.getInputHudra()+"", 0, 255)) {
|
|
|
- return ResultData.build().error(getResString("err.length", this.getResString("input.hudra"), "0", "255"));
|
|
|
+ if (!StringUtil.checkLength(booth.getBoothFloor()+"", 0, 255)) {
|
|
|
+ return ResultData.build().error(getResString("err.length", this.getResString("booth.floor"), "0", "255"));
|
|
|
}
|
|
|
if ( StringUtils.isNotBlank(booth.getBoothName()) && !StringUtil.checkLength(booth.getBoothName()+"", 0, 255)) {
|
|
|
return ResultData.build().error(getResString("err.length", this.getResString("booth.name"), "0", "255"));
|