| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.Version; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @TableLogic |
| | | private Integer deleted; |
| | | |
| | | @Version |
| | | private Integer version; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | |
| | | @ApiModelProperty(value= "指定站点") |
| | | private String stationId; |
| | | |
| | | /** |
| | | * 指定库位 |
| | | */ |
| | | @ApiModelProperty(value= "指定库位") |
| | | private String locCode; |
| | | |
| | | public Wave() {} |
| | | |
| | | public Wave(String code,Short type,Short exceStatus,Double anfme,Double qty,Integer orderNum,Integer status,Long tenantId,Date createTime,Long createBy,Date updateTime,Long updateBy,Integer deleted,String memo) { |