指标添加本地变量
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.fibo.ddp.common.model.common;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
@@ -13,25 +14,30 @@ public class BasePage {
|
||||
/**
|
||||
* 当前页数
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private int page;
|
||||
|
||||
/**
|
||||
* 每页显示的行数
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private int rows;
|
||||
|
||||
/**
|
||||
* 开始行数
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private Integer curRow;
|
||||
|
||||
/**
|
||||
* 结束行数
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private Integer endRow;
|
||||
|
||||
/**
|
||||
* 总行数
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private Integer total;
|
||||
}
|
||||
|
||||
@@ -219,4 +219,9 @@ public class Field extends BasePage implements Serializable {
|
||||
* 消息队列源id
|
||||
*/
|
||||
private Long mqSourceId;
|
||||
|
||||
/**
|
||||
* 是否局部变量
|
||||
*/
|
||||
private Boolean isLocalVariable;
|
||||
}
|
||||
|
||||
@@ -40,6 +40,7 @@ public class FieldSaveParam implements Serializable {
|
||||
private String dictVariable;
|
||||
private Integer sourceType;
|
||||
private Long mqSourceId;
|
||||
private Boolean isLocalVariable;
|
||||
|
||||
//
|
||||
// public Field toField() {
|
||||
|
||||
Reference in New Issue
Block a user