28 lines
493 B
Java
28 lines
493 B
Java
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;
|
|
}
|