feat: 迁移标准属性自定义 修改相关问题
This commit is contained in:
@@ -24,7 +24,7 @@ import java.util.List;
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/dictionary")
|
||||
@Api(description = "数据字典管理")
|
||||
@Api(tags = "数据字典管理")
|
||||
public class DicEORestController extends BaseController<DictionaryEO> {
|
||||
private static final Logger logger = LoggerFactory.getLogger(DictionaryEO.class);
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_UTF8_VALUE;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/dictype")
|
||||
@Api(description = "字典类型明细管理")
|
||||
@Api(tags = "字典类型明细管理")
|
||||
public class DicTypeEORestController extends BaseController<DicTypeEO> {
|
||||
private static final Logger logger = LoggerFactory.getLogger(DicTypeEO.class);
|
||||
@Autowired
|
||||
|
||||
@@ -27,7 +27,7 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_UTF8_VALUE;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/feedbackInfo")
|
||||
@Api(description = "|FeedbackInfoEO|")
|
||||
@Api(tags = "|FeedbackInfoEO|")
|
||||
public class FeedbackInfoEOController extends BaseController<FeedbackInfoEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(FeedbackInfoEOController.class);
|
||||
|
||||
@@ -23,7 +23,7 @@ import java.util.List;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/linkInfo")
|
||||
@Api(description = "|LinkInfoEO|")
|
||||
@Api(tags = "|LinkInfoEO|")
|
||||
public class LinkInfoEOController extends BaseController<LinkInfoEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(LinkInfoEOController.class);
|
||||
|
||||
@@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* @Description:
|
||||
*/
|
||||
@RestController
|
||||
@Api(description="LoginInfoEO")
|
||||
@Api(tags="LoginInfoEO")
|
||||
@RequestMapping("/${restPath}/sys/loginInfoEO")
|
||||
public class LoginInfoEOController {
|
||||
@Autowired
|
||||
|
||||
@@ -24,7 +24,7 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_UTF8_VALUE;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/menu")
|
||||
@Api(description = "菜单管理")
|
||||
@Api(tags = "菜单管理")
|
||||
public class MenuEOController extends BaseController<MenuEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(MenuEOController.class);
|
||||
|
||||
@@ -38,7 +38,7 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_UTF8_VALUE;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/role")
|
||||
@Api(description = "角色管理")
|
||||
@Api(tags = "角色管理")
|
||||
public class RoleEOController extends BaseController<RoleEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(RoleEOController.class);
|
||||
|
||||
@@ -21,7 +21,7 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_UTF8_VALUE;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/roleSarMenu")
|
||||
@Api(description = "|RoleSarMenuEO|")
|
||||
@Api(tags = "|RoleSarMenuEO|")
|
||||
public class RoleSarMenuEOController extends BaseController<RoleSarMenuEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(RoleSarMenuEOController.class);
|
||||
|
||||
@@ -21,7 +21,7 @@ import java.util.List;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/person/userConfig")
|
||||
@Api(description = "|UserConfigEO|")
|
||||
@Api(tags = "|UserConfigEO|")
|
||||
public class UserConfigEOController extends BaseController<UserConfigEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(UserConfigEOController.class);
|
||||
|
||||
@@ -35,7 +35,7 @@ import java.util.List;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/user")
|
||||
@Api(description = "用户管理")
|
||||
@Api(tags = "用户管理")
|
||||
public class UserEOController extends BaseController<UserEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(UserEOController.class);
|
||||
|
||||
@@ -27,7 +27,7 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_UTF8_VALUE;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/person/userInfo")
|
||||
@Api(description = "|UserInfoEO|")
|
||||
@Api(tags = "|UserInfoEO|")
|
||||
public class UserInfoEOController extends BaseController<UserInfoEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(UserInfoEOController.class);
|
||||
|
||||
@@ -24,7 +24,7 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_UTF8_VALUE;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/${restPath}/sys/warnTime")
|
||||
@Api(description = "|WarnTimeEO|")
|
||||
@Api(tags = "|WarnTimeEO|")
|
||||
public class WarnTimeEOController extends BaseController<WarnTimeEO> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(WarnTimeEOController.class);
|
||||
|
||||
@@ -2,6 +2,7 @@ package com.adc.da.sys.page;
|
||||
|
||||
|
||||
import com.adc.da.base.page.BasePage;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* <b>功能:</b>TS_DICTIONARY DictionaryEOPage<br>
|
||||
@@ -9,6 +10,7 @@ import com.adc.da.base.page.BasePage;
|
||||
* <b>日期:</b> 2018-09-03 <br>
|
||||
* <b>版权所有:<b>版权归北京卡达克数据技术中心所有。<br>
|
||||
*/
|
||||
@Data
|
||||
public class DictionaryEOPage extends BasePage {
|
||||
|
||||
private String modifyTime;
|
||||
@@ -31,155 +33,8 @@ public class DictionaryEOPage extends BasePage {
|
||||
private String idOperator = "=";
|
||||
private String notId;
|
||||
|
||||
public String getModifyTime() {
|
||||
return this.modifyTime;
|
||||
}
|
||||
private String paixu;
|
||||
private String shunxu;
|
||||
private String sql;
|
||||
|
||||
public void setModifyTime(String modifyTime) {
|
||||
this.modifyTime = modifyTime;
|
||||
}
|
||||
|
||||
public String getModifyTime1() {
|
||||
return this.modifyTime1;
|
||||
}
|
||||
|
||||
public void setModifyTime1(String modifyTime1) {
|
||||
this.modifyTime1 = modifyTime1;
|
||||
}
|
||||
|
||||
public String getModifyTime2() {
|
||||
return this.modifyTime2;
|
||||
}
|
||||
|
||||
public void setModifyTime2(String modifyTime2) {
|
||||
this.modifyTime2 = modifyTime2;
|
||||
}
|
||||
|
||||
public String getModifyTimeOperator() {
|
||||
return this.modifyTimeOperator;
|
||||
}
|
||||
|
||||
public void setModifyTimeOperator(String modifyTimeOperator) {
|
||||
this.modifyTimeOperator = modifyTimeOperator;
|
||||
}
|
||||
|
||||
public String getCreationTime() {
|
||||
return this.creationTime;
|
||||
}
|
||||
|
||||
public void setCreationTime(String creationTime) {
|
||||
this.creationTime = creationTime;
|
||||
}
|
||||
|
||||
public String getCreationTime1() {
|
||||
return this.creationTime1;
|
||||
}
|
||||
|
||||
public void setCreationTime1(String creationTime1) {
|
||||
this.creationTime1 = creationTime1;
|
||||
}
|
||||
|
||||
public String getCreationTime2() {
|
||||
return this.creationTime2;
|
||||
}
|
||||
|
||||
public void setCreationTime2(String creationTime2) {
|
||||
this.creationTime2 = creationTime2;
|
||||
}
|
||||
|
||||
public String getCreationTimeOperator() {
|
||||
return this.creationTimeOperator;
|
||||
}
|
||||
|
||||
public void setCreationTimeOperator(String creationTimeOperator) {
|
||||
this.creationTimeOperator = creationTimeOperator;
|
||||
}
|
||||
|
||||
public String getValidFlag() {
|
||||
return this.validFlag;
|
||||
}
|
||||
|
||||
public void setValidFlag(String validFlag) {
|
||||
this.validFlag = validFlag;
|
||||
}
|
||||
|
||||
public String getValidFlagOperator() {
|
||||
return this.validFlagOperator;
|
||||
}
|
||||
|
||||
public void setValidFlagOperator(String validFlagOperator) {
|
||||
this.validFlagOperator = validFlagOperator;
|
||||
}
|
||||
|
||||
public String getDictionarySeq() {
|
||||
return this.dictionarySeq;
|
||||
}
|
||||
|
||||
public void setDictionarySeq(String dictionarySeq) {
|
||||
this.dictionarySeq = dictionarySeq;
|
||||
}
|
||||
|
||||
public String getDictionarySeqOperator() {
|
||||
return this.dictionarySeqOperator;
|
||||
}
|
||||
|
||||
public void setDictionarySeqOperator(String dictionarySeqOperator) {
|
||||
this.dictionarySeqOperator = dictionarySeqOperator;
|
||||
}
|
||||
|
||||
public String getDictionaryName() {
|
||||
return this.dictionaryName;
|
||||
}
|
||||
|
||||
public void setDictionaryName(String dictionaryName) {
|
||||
this.dictionaryName = dictionaryName;
|
||||
}
|
||||
|
||||
public String getDictionaryNameOperator() {
|
||||
return this.dictionaryNameOperator;
|
||||
}
|
||||
|
||||
public void setDictionaryNameOperator(String dictionaryNameOperator) {
|
||||
this.dictionaryNameOperator = dictionaryNameOperator;
|
||||
}
|
||||
|
||||
public String getDictionaryCode() {
|
||||
return this.dictionaryCode;
|
||||
}
|
||||
|
||||
public void setDictionaryCode(String dictionaryCode) {
|
||||
this.dictionaryCode = dictionaryCode;
|
||||
}
|
||||
|
||||
public String getDictionaryCodeOperator() {
|
||||
return this.dictionaryCodeOperator;
|
||||
}
|
||||
|
||||
public void setDictionaryCodeOperator(String dictionaryCodeOperator) {
|
||||
this.dictionaryCodeOperator = dictionaryCodeOperator;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getIdOperator() {
|
||||
return this.idOperator;
|
||||
}
|
||||
|
||||
public void setIdOperator(String idOperator) {
|
||||
this.idOperator = idOperator;
|
||||
}
|
||||
|
||||
public String getNotId() {
|
||||
return notId;
|
||||
}
|
||||
|
||||
public void setNotId(String notId) {
|
||||
this.notId = notId;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user