| | |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import com.core.common.Cools; |
| | | import com.core.common.SpringUtils; |
| | | import com.zy.asrs.service.LocMastService; |
| | | import com.zy.system.entity.User; |
| | | import com.zy.system.service.UserService; |
| | | import com.core.common.Cools; |
| | | import com.core.common.SpringUtils; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @TableField("qty_box") |
| | | private Double qtyBox; |
| | | |
| | | /** |
| | | * 客户名称 |
| | | */ |
| | | @ApiModelProperty(value= "客户名称") |
| | | private String str3; |
| | | |
| | | /** |
| | | * 项目信息 |
| | | */ |
| | | @ApiModelProperty(value= "项目信息") |
| | | private String str4; |
| | | /** |
| | | * 类别 |
| | | */ |
| | | @ApiModelProperty(value= "类别") |
| | | private String str5; |
| | | |
| | | public String getStr5$(){ |
| | | if (Cools.isEmpty(this.str5) ){ |
| | | return ""; |
| | | } |
| | | if (this.str5.equals("1")){ |
| | | return "原材料"; |
| | | } |
| | | if (this.str5.equals("2")){ |
| | | return "成品"; |
| | | } |
| | | if (this.str5.equals("3")){ |
| | | return "半成品"; |
| | | } |
| | | return ""; |
| | | } |
| | | |
| | | public String getLocNo$(){ |
| | | LocMastService service = SpringUtils.getBean(LocMastService.class); |
| | | LocMast locMast = service.selectById(this.locNo); |