config
This commit is contained in:
@@ -86,7 +86,7 @@ public class FunOperationEntity extends BaseEntity implements Serializable {
|
|||||||
* 可配置字段
|
* 可配置字段
|
||||||
*/
|
*/
|
||||||
@Column(typeHandler = PostgreSQLJsonTypeHandler.class)
|
@Column(typeHandler = PostgreSQLJsonTypeHandler.class)
|
||||||
private List<String> fieldCofnig;
|
private List<String> fieldConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 排序
|
* 排序
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ public class FunOperationSaveUpdateReq implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "可配置字段")
|
@Schema(description = "可配置字段")
|
||||||
@Column(typeHandler = PostgreSQLJsonTypeHandler.class)
|
@Column(typeHandler = PostgreSQLJsonTypeHandler.class)
|
||||||
private List<String> fieldCofnig;
|
private List<String> fieldConfig;
|
||||||
|
|
||||||
@Schema(description = "排序")
|
@Schema(description = "排序")
|
||||||
private Integer sortOrder;
|
private Integer sortOrder;
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ public class FunOperationQueryRes implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "可配置字段")
|
@Schema(description = "可配置字段")
|
||||||
@Column(typeHandler = PostgreSQLJsonTypeHandler.class)
|
@Column(typeHandler = PostgreSQLJsonTypeHandler.class)
|
||||||
private List<String> fieldCofnig;
|
private List<String> fieldConfig;
|
||||||
|
|
||||||
@Schema(description = "排序")
|
@Schema(description = "排序")
|
||||||
private Integer sortOrder;
|
private Integer sortOrder;
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ public class FunOperationDef extends TableDef {
|
|||||||
/**
|
/**
|
||||||
* 可配置字段
|
* 可配置字段
|
||||||
*/
|
*/
|
||||||
public final QueryColumn FIELD_COFNIG = new QueryColumn(this, "field_cofnig");
|
public final QueryColumn FIELD_CONFIG = new QueryColumn(this, "field_config");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 操作ID
|
* 操作ID
|
||||||
@@ -94,7 +94,7 @@ public class FunOperationDef extends TableDef {
|
|||||||
/**
|
/**
|
||||||
* 默认字段,不包含逻辑删除或者 large 等字段。
|
* 默认字段,不包含逻辑删除或者 large 等字段。
|
||||||
*/
|
*/
|
||||||
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, MODULE_ID, ITEM_ID, IS_GREEN_LIGHT, FUN_NAME, OPERATION_CODE, FUN_TYPE, REQUEST_TYPE, USABLE_CONFIG, FIELD_COFNIG, SORT_ORDER, DESCRIBE, OPERATION_ID};
|
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, MODULE_ID, ITEM_ID, IS_GREEN_LIGHT, FUN_NAME, OPERATION_CODE, FUN_TYPE, REQUEST_TYPE, USABLE_CONFIG, FIELD_CONFIG, SORT_ORDER, DESCRIBE, OPERATION_ID};
|
||||||
|
|
||||||
public FunOperationDef() {
|
public FunOperationDef() {
|
||||||
super("", "cg_fun_operation");
|
super("", "cg_fun_operation");
|
||||||
|
|||||||
Reference in New Issue
Block a user