package com.billion.main.da.domain;
|
|
import com.billion.common.annotation.Excel;
|
import com.billion.main.common.BaseEntity;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 过站采集对象 da_station_collection
|
*
|
* @author HDY
|
* @date 2025-02-12
|
*/
|
@Data
|
public class DaStationCollection extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
/** 总成序列号 */
|
@Excel(name = "总成序列号")
|
private String sfcCode;
|
|
/** 工位编码 */
|
@Excel(name = "工位编码")
|
private String locationCode;
|
|
/** 进站时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "进站时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date inboundTime;
|
|
/** 出站时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "出站时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date outboundTime;
|
|
/** 状态(1合格0不合格) */
|
@Excel(name = "状态", readConverterExp = "1=合格0不合格")
|
private String status;
|
|
/** 采集时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date collectTime;
|
|
|
}
|