| | |
| | | package com.aps.core.domain; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | |
| | | /** 工厂 */ |
| | | // @Excel(name = "工厂") |
| | | private String plant; |
| | | |
| | | /** 统计生产年份 */ |
| | | @Excel(name = "生产年份List") |
| | | private List<Long> produceYears; |
| | | |
| | | /** 统计生产月份 */ |
| | | @Excel(name = "生产月份List") |
| | | private List<Long> produceMonths; |
| | | |
| | | public void setId(String id) |
| | | { |
| | |
| | | return plant; |
| | | } |
| | | |
| | | public void setProduceYears(List<Long> produceYears) |
| | | { |
| | | this.produceYears = produceYears; |
| | | } |
| | | |
| | | public List<Long> getProduceYears() |
| | | { |
| | | return produceYears; |
| | | } |
| | | |
| | | public void setProduceMonths(List<Long> produceMonths) |
| | | { |
| | | this.produceMonths = produceMonths; |
| | | } |
| | | |
| | | public List<Long> getProduceMonths() |
| | | { |
| | | return produceMonths; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |