| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.core.common.Cools;import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | |
| | | @ApiModelProperty(value= "出库排序交互点") |
| | | @TableField("is_out_order_list") |
| | | private String isOutOrderList; |
| | | |
| | | /** |
| | | * 顶升移栽点 |
| | | */ |
| | | @ApiModelProperty(value= "顶升移栽点") |
| | | @TableField("is_lift_transfer_list") |
| | | private String isLiftTransferList; |
| | | |
| | | public BasDevp() {} |
| | | |
| | |
| | | return list; |
| | | } |
| | | |
| | | public List<StationObjModel> getOutOrderList$(){ |
| | | List<StationObjModel> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.isOutOrderList)){ |
| | | return list; |
| | | } |
| | | |
| | | List<StationObjModel> jsonList = JSON.parseArray(this.isOutOrderList, StationObjModel.class); |
| | | for (StationObjModel json : jsonList){ |
| | | list.add(json); |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | public List<Integer> getOutOrderIntList(){ |
| | | List<Integer> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.isOutOrderList)){ |
| | | return list; |
| | | } |
| | | |
| | | List<StationObjModel> jsonList = JSON.parseArray(this.isOutOrderList, StationObjModel.class); |
| | | for (StationObjModel json : jsonList){ |
| | | list.add(json.getStationId()); |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | public List<StationObjModel> getLiftTransferList$(){ |
| | | List<StationObjModel> list = new ArrayList<>(); |
| | | if (Cools.isEmpty(this.isLiftTransferList)){ |
| | | return list; |
| | | } |
| | | |
| | | List<StationObjModel> jsonList = JSON.parseArray(this.isLiftTransferList, StationObjModel.class); |
| | | for (StationObjModel json : jsonList){ |
| | | list.add(json); |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | } |