| | |
| | | package com.aps.core.domain; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 物料管理对象 aps_material_management |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** id */ |
| | | private String id; |
| | | private Long id; |
| | | |
| | | /** 料号 */ |
| | | @Excel(name = "料号") |
| | |
| | | private String applicableWorkshop; |
| | | |
| | | /** 生效日期 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "生效日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "生效日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date effectiveDate; |
| | | |
| | | /** 失效日期 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "失效日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "失效日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date expiringDate; |
| | | |
| | | /** 集成日期 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date integrationDate; |
| | | |
| | | public void setId(String id) |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getId() |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |