package com.billion.main.da.domain;
|
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.billion.common.annotation.Excel;
|
import com.billion.main.common.BaseEntity;
|
|
/**
|
* 参数采集对象 da_param_collection
|
*
|
* @author Billion-Yi
|
* @date 2024-11-20
|
*/
|
@Data
|
public class DaParamCollection extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
/** 总成序列号 */
|
@Excel(name = "总成序列号")
|
private String sfcCode;
|
|
/** 工位编码 */
|
@Excel(name = "工位编码")
|
private String locationCode;
|
|
/** 参数编码 */
|
@Excel(name = "参数编码")
|
private String paramCode;
|
|
/** 参数名称 */
|
@Excel(name = "参数名称")
|
private String paramName;
|
|
/** 参数值 */
|
@Excel(name = "参数值")
|
private String paramValue;
|
|
/** 采集时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date collectTime;
|
|
@TableField(exist = false)
|
private String[] timeQuery;
|
|
@TableField(exist = false)
|
private String startTime;
|
|
@TableField(exist = false)
|
private String stopTime;
|
|
|
}
|