| | |
| | | @TableField("snap_type") |
| | | private String snapType; |
| | | |
| | | @Column(name = "plate_snap_type", columnDefinition = "varchar(40) COMMENT '车牌识别抓拍方式'") |
| | | @Column(name = "plate_snap_type", columnDefinition = "varchar(40) COMMENT '抓图识别'") |
| | | @TableField("plate_snap_type") |
| | | private String plateSnapType; |
| | | |
| | |
| | | @TableField("remark") |
| | | private String remark; |
| | | |
| | | //异常信息 |
| | | @Transient |
| | | private String errorMsg; |
| | | public InoutConf() { |
| | | super(); |
| | | } |
| | | |
| | | public InoutConf(InoutConf conf) { |
| | | this.id = conf.getId(); |
| | | this.deptId = conf.getDeptId(); |
| | | this.sort = conf.getSort(); |
| | | this.inOrder = conf.getInOrder(); |
| | | this.inoutProgress = conf.getInoutProgress(); |
| | | this.name = conf.getName(); |
| | | this.sn = conf.getSn(); |
| | | this.ip = conf.getIp(); |
| | | this.port = conf.getPort(); |
| | | this.loginId = conf.getLoginId(); |
| | | this.pwd = conf.getPwd(); |
| | | this.chanNum = conf.getChanNum(); |
| | | this.portCtrl = conf.getPortCtrl(); |
| | | this.type = conf.getType(); |
| | | this.status = conf.getStatus(); |
| | | this.protocol = conf.getProtocol(); |
| | | this.playType = conf.getPlayType(); |
| | | this.snapType = conf.getSnapType(); |
| | | this.mediaAddr = conf.getMediaAddr(); |
| | | this.remark = conf.getRemark(); |
| | | } |
| | | |
| | | public InoutConf(String sort) { |
| | | this.sort = sort; |
| | | } |
| | | |
| | | } |