package com.jcdm.main.da.tileMatchCollection.domain;
|
|
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.jcdm.common.annotation.Excel;
|
import com.jcdm.common.core.domain.BaseEntity;
|
|
import java.util.Date;
|
|
/**
|
* 条码采集对象 da_tile_match_collection
|
*
|
* @author yyt
|
* @date 2024-06-06
|
*/
|
@Data
|
public class DaTileMatchCollection
|
{
|
|
/** id */
|
private Long id;
|
|
/** 发动机号 */
|
@Excel(name = "发动机号")
|
private String sfcCode;
|
|
/** 零件编号 */
|
@Excel(name = "零件编号")
|
private String paramCode;
|
|
/** 零件名称 */
|
@Excel(name = "零件名称")
|
private String paramName;
|
|
/** 备注 */
|
@Excel(name = "备注")
|
private String remarks;
|
|
/** 工序编号 */
|
@Excel(name = "工序编号")
|
private String locationCode;
|
|
/** 条码 */
|
@Excel(name = "条码")
|
private String paramValue;
|
|
/** 创建用户 */
|
private String createUser;
|
|
/** 更改用户 */
|
private String updateUser;
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
/** 更新时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date updateTime;
|
}
|