init
This commit is contained in:
27
src/main/java/com/nis/entity/VisualChartElement.java
Normal file
27
src/main/java/com/nis/entity/VisualChartElement.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package com.nis.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("visual_chart_element")
|
||||
public class VisualChartElement {
|
||||
|
||||
@TableId(type = IdType.INPUT)
|
||||
private Integer id;
|
||||
|
||||
private Integer chartId;
|
||||
|
||||
private String expression;
|
||||
|
||||
private String type;
|
||||
|
||||
private String legend;
|
||||
|
||||
private Integer buildIn;
|
||||
|
||||
private String seq;
|
||||
}
|
||||
Reference in New Issue
Block a user