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",
|
"password": "123456",
|
||||||
"savePassword": "secretStorage",
|
"savePassword": "secretStorage",
|
||||||
"connectionTimeout": 30
|
"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;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** 业务表 */
|
/** 业务表 */
|
||||||
|
@Valid
|
||||||
private GenTable table;
|
private GenTable table;
|
||||||
|
|
||||||
/** 业务表的列 */
|
/** 业务表的列 */
|
||||||
@ -39,11 +40,9 @@ public class GenTableVo extends BaseEntity {
|
|||||||
private List<GenJoinTable> joinTablesMate;
|
private List<GenJoinTable> joinTablesMate;
|
||||||
|
|
||||||
/** 参与关联的表 */
|
/** 参与关联的表 */
|
||||||
@Valid
|
|
||||||
private Collection<GenTable> joinTables;
|
private Collection<GenTable> joinTables;
|
||||||
|
|
||||||
/** 参与关联的列 */
|
/** 参与关联的列 */
|
||||||
@Valid
|
|
||||||
private List<GenTableColumn> joinColumns;
|
private List<GenTableColumn> joinColumns;
|
||||||
|
|
||||||
public List<GenTable> getAllGenTables() {
|
public List<GenTable> getAllGenTables() {
|
||||||
|
Loading…
Reference in New Issue
Block a user