| | |
| | | |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键id */ |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | @Schema(description = "主键id", type = "Long") |
| | | private Long id; |
| | | |
| | |
| | | @Schema(description = "月产出总数量", type = "BigDecimal") |
| | | private BigDecimal monthProduceAllNum; |
| | | |
| | | /** 工厂代码 **/ |
| | | @Excel(name = "工厂代码") |
| | | @Schema(description = "工厂代码", type = "String") |
| | | private String orgCode; |
| | | |
| | | public void setOrgCode(String orgCode) |
| | | { |
| | | this.orgCode = orgCode; |
| | | } |
| | | |
| | | public String getOrgCode() { |
| | | return orgCode; |
| | | } |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |