| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import java.io.Serializable; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * <p> |
| | | * |
| | | * |
| | | * </p> |
| | | * |
| | | * @author zhoush |
| | |
| | | /** |
| | | * 下片工位表id |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /** |
| | |
| | | */ |
| | | private Integer workState; |
| | | |
| | | /** |
| | | * 层数 |
| | | */ |
| | | private Integer layer; |
| | | |
| | | |
| | | /** |
| | | * 总数量 |
| | | */ |
| | | private Integer totalQuantity; |
| | | |
| | | /** |
| | | * 落架数量 |
| | | */ |
| | | private Integer racksNumber; |
| | | /** |
| | | * 人工下片数量 |
| | | */ |
| | | private Integer otherNumber; |
| | | |
| | | |
| | | } |