| | |
| | | package org.jeecg.modules.mes.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | /**需求数量*/ |
| | | @Excel(name = "需求数量", width = 15) |
| | | @ApiModelProperty(value = "需求数量") |
| | | private Double requiredQuantity; |
| | | private BigDecimal requiredQuantity; |
| | | /**实际数量*/ |
| | | @Excel(name = "实际数量", width = 15) |
| | | @ApiModelProperty(value = "实际数量") |
| | | private Double actualQuantity; |
| | | private BigDecimal actualQuantity; |
| | | /**是否齐备*/ |
| | | @Excel(name = "是否齐备", width = 15) |
| | | @ApiModelProperty(value = "是否齐备") |
| | | private String checkFlag; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "工单号") |
| | | private String workOrderCode; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "基本单位") |
| | | private String productionUnit; |
| | | } |