New file |
| | |
| | | package com.mes.rawusage.entity;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Date;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import io.swagger.annotations.ApiModel;
|
| | | import io.swagger.annotations.ApiModelProperty;
|
| | | import lombok.Data;
|
| | | import lombok.EqualsAndHashCode;
|
| | | import org.springframework.stereotype.Component;
|
| | |
|
| | | /**
|
| | | * |
| | | *
|
| | | * @author system
|
| | | * @since 2024-07-09 14:51:27
|
| | | */
|
| | | @Data
|
| | | @Component
|
| | | @EqualsAndHashCode(callSuper = false)
|
| | | @TableName("raw_usage")
|
| | | @ApiModel(value = "RawUsage", description = " ")
|
| | | public class RawUsage implements Serializable{
|
| | |
|
| | | private static final long serialVersionUID=1L;
|
| | |
|
| | | /**
|
| | | * |
| | | */
|
| | | @ApiModelProperty(" ")
|
| | | private Long id;
|
| | |
|
| | | /**
|
| | | * 玻璃类型
|
| | | */
|
| | | @ApiModelProperty("玻璃类型")
|
| | | private String rawType;
|
| | |
|
| | | /**
|
| | | * 宽度
|
| | | */
|
| | | @ApiModelProperty("宽度")
|
| | | private Float rawWidth;
|
| | |
|
| | | /**
|
| | | * 高度
|
| | | */
|
| | | @ApiModelProperty("高度")
|
| | | private Float rawHeight;
|
| | |
|
| | | /**
|
| | | * 厚度
|
| | | */
|
| | | @ApiModelProperty("厚度")
|
| | | private Float rawThickness;
|
| | |
|
| | | /**
|
| | | * 状态
|
| | | */
|
| | | @ApiModelProperty("状态")
|
| | | private String state;
|
| | |
|
| | | /**
|
| | | * 颜色
|
| | | */
|
| | | @ApiModelProperty("颜色")
|
| | | private String color;
|
| | |
|
| | | /**
|
| | | * 总数量
|
| | | */
|
| | | @ApiModelProperty("总数量")
|
| | | private Integer pieces;
|
| | |
|
| | | /**
|
| | | * 剩余数量
|
| | | */
|
| | | @ApiModelProperty("剩余数量")
|
| | | private Integer leftPieces;
|
| | |
|
| | | /**
|
| | | * 物料编码
|
| | | */
|
| | | @ApiModelProperty("物料编码")
|
| | | private String qrcode;
|
| | |
|
| | | /**
|
| | | * 创建时间
|
| | | */
|
| | | @ApiModelProperty("创建时间")
|
| | | private Date createTime;
|
| | |
|
| | | /**
|
| | | * 生产日期
|
| | | */
|
| | | @ApiModelProperty("生产日期")
|
| | | private Date productionTime;
|
| | |
|
| | | /**
|
| | | * 批次号
|
| | | */
|
| | | @ApiModelProperty("批次号")
|
| | | private String batchId;
|
| | |
|
| | |
|
| | |
|
| | | } |