| | |
| | | package com.billion.main.da.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.billion.common.core.domain.BaseEntity; |
| | | 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_material_collection |
| | |
| | | @Excel(name = "参数值") |
| | | private String paramValue; |
| | | |
| | | /** 物料编码 */ |
| | | @Excel(name = "物料编码") |
| | | private String materialCode; |
| | | |
| | | /** 物料名称 */ |
| | | @Excel(name = "物料名称") |
| | | private String materialName; |
| | | |
| | | /** 采集时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |