package com.hk.NumericalCollection.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @TableName DEVICEDATASTANDARDMODITEM
|
*/
|
@TableName(value = "DEVICEDATASTANDARDMODITEM")
|
@Data
|
public class Devicedatastandardmoditem implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
/**
|
*
|
*/
|
@TableId
|
private Long id;
|
/**
|
*
|
*/
|
private Integer type;
|
/**
|
*
|
*/
|
private String keyshort;
|
/**
|
*
|
*/
|
private String keyname;
|
/**
|
*
|
*/
|
private Integer islinear;
|
/**
|
*
|
*/
|
private BigDecimal a;
|
/**
|
*
|
*/
|
private BigDecimal b;
|
/**
|
*
|
*/
|
private String datainfo;
|
/**
|
*
|
*/
|
private String dataunit;
|
/**
|
*
|
*/
|
private Long modid;
|
/**
|
*
|
*/
|
private String modname;
|
/**
|
*
|
*/
|
private String modno;
|
/**
|
*
|
*/
|
private String ecdescribe;
|
/**
|
*
|
*/
|
private String color;
|
/**
|
*
|
*/
|
private Integer infront;
|
/**
|
*
|
*/
|
private Integer divtype;
|
/**
|
*
|
*/
|
private String img;
|
/**
|
*
|
*/
|
private Date datecreater;
|
/**
|
*
|
*/
|
private Long authorid;
|
/**
|
*
|
*/
|
private String author;
|
/**
|
*
|
*/
|
private Date lasteditdate;
|
/**
|
*
|
*/
|
private String formula;
|
/**
|
*
|
*/
|
private String pushkey;
|
/**
|
*
|
*/
|
private Integer isShow;
|
private Integer groupSeq;
|
private Integer seq;
|
}
|