| | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler; |
| | | import com.vincent.rsf.server.manager.enums.StationTypeEnum; |
| | | import com.vincent.rsf.server.manager.service.WarehouseAreasService; |
| | | import com.vincent.rsf.server.system.entity.DictData; |
| | |
| | | import java.util.stream.Collectors; |
| | | |
| | | @Data |
| | | @TableName("man_bas_station") |
| | | @TableName(value = "man_bas_station", autoResultMap = true) |
| | | public class BasStation implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | /** |
| | | * 站点名称 |
| | | */ |
| | | @ApiModelProperty(value = "站点名称") |
| | | @ApiModelProperty(value = "站点编号") |
| | | private String stationName; |
| | | |
| | | /** |
| | | * 站点名称 |
| | | */ |
| | | @ApiModelProperty(value = "站点名称") |
| | | private String stationId; |
| | | |
| | | @ApiModelProperty("站点类型: {0:光电, 1:无光电}") |
| | | private Integer type; |
| | |
| | | @TableField(exist = false) |
| | | private List<Long> containerTypes; |
| | | |
| | | /** |
| | | * 别名 |
| | | */ |
| | | @ApiModelProperty(value = "别名") |
| | | @TableField(typeHandler = JacksonTypeHandler.class) |
| | | private List<String> stationAlias; |
| | | |
| | | public BasStation() { |
| | | } |
| | | |