| | |
| | | @ApiModelProperty(value= "备注") |
| | | private String memo; |
| | | |
| | | /** |
| | | * 站点楼层 |
| | | */ |
| | | @ApiModelProperty(value= "站点楼层") |
| | | @TableField("station_lev") |
| | | private Integer stationLev; |
| | | |
| | | /** |
| | | * 设备编号 |
| | | */ |
| | | @ApiModelProperty(value= "设备编号") |
| | | @TableField("device_no") |
| | | private Integer deviceNo; |
| | | |
| | | /** |
| | | * 站点别名 |
| | | */ |
| | | @ApiModelProperty(value= "站点别名") |
| | | @TableField("station_alias") |
| | | private String stationAlias; |
| | | |
| | | public BasStation() {} |
| | | |
| | | public BasStation(Integer status,Integer wrkNo,String inEnable,String outEnable,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo,Integer stationLev) { |
| | | public BasStation(Integer status,Integer wrkNo,String inEnable,String outEnable,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { |
| | | this.status = status; |
| | | this.wrkNo = wrkNo; |
| | | this.inEnable = inEnable; |
| | |
| | | this.updateBy = updateBy; |
| | | this.updateTime = updateTime; |
| | | this.memo = memo; |
| | | this.stationLev = stationLev; |
| | | } |
| | | |
| | | // BasStation basStation = new BasStation( |