GenTableVo移除对关联部分的校验
This commit is contained in:
parent
2a63e301a3
commit
5b6e183713
12
.vscode/settings.json
vendored
12
.vscode/settings.json
vendored
@ -51,6 +51,18 @@
|
||||
"password": "123456",
|
||||
"savePassword": "secretStorage",
|
||||
"connectionTimeout": 30
|
||||
},
|
||||
{
|
||||
"connectionId": "fNsY4HlOb21w_5TnIGy_d",
|
||||
"name": "localhost",
|
||||
"driver": "redis",
|
||||
"connectionType": "host",
|
||||
"host": "127.0.0.1",
|
||||
"port": 6379,
|
||||
"ssl": false,
|
||||
"savePassword": "na",
|
||||
"readOnly": false,
|
||||
"connectionTimeout": 30
|
||||
}
|
||||
],
|
||||
}
|
@ -28,6 +28,7 @@ public class GenTableVo extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 业务表 */
|
||||
@Valid
|
||||
private GenTable table;
|
||||
|
||||
/** 业务表的列 */
|
||||
@ -39,11 +40,9 @@ public class GenTableVo extends BaseEntity {
|
||||
private List<GenJoinTable> joinTablesMate;
|
||||
|
||||
/** 参与关联的表 */
|
||||
@Valid
|
||||
private Collection<GenTable> joinTables;
|
||||
|
||||
/** 参与关联的列 */
|
||||
@Valid
|
||||
private List<GenTableColumn> joinColumns;
|
||||
|
||||
public List<GenTable> getAllGenTables() {
|
||||
|
Loading…
Reference in New Issue
Block a user