作者 shenhailong

二水厂

package com.tianbo.warehouse.controller.water;
import com.github.pagehelper.PageInfo;
import com.tianbo.warehouse.annotation.LogAnnotation;
import com.tianbo.warehouse.controller.response.ResultJson;
import com.tianbo.warehouse.model.Company;
import com.tianbo.warehouse.model.WaterStationsPatrol;
import com.tianbo.warehouse.service.CompanyService;
import com.tianbo.warehouse.service.water.WaterStationsPatrolService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Valid;
@RestController
@RequestMapping("/water_stations_patrol")
public class WaterStationsPatrolController {
@Autowired
WaterStationsPatrolService waterStationsPatrolService;
@GetMapping("/list")
public PageInfo<WaterStationsPatrol> list(@RequestParam(value = "pageNum",required = false,defaultValue = "1")
int pageNum,
@RequestParam(value = "pageSize",required = false,defaultValue = "5")
int pageSize){
return waterStationsPatrolService.findAll(pageNum,pageSize);
}
@LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理添加")
@PostMapping("/add")
public ResultJson add(@RequestBody WaterStationsPatrol waterStationsPatrol){
int i =waterStationsPatrolService.insertSelective(waterStationsPatrol);
ResultJson resultJson = new ResultJson();
if (1==i){
resultJson = new ResultJson("200","添加成功");
}else {
resultJson = new ResultJson("500","insert faild");
}
return resultJson;
}
@LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理修改")
@PutMapping("/edit")
@ResponseBody
public ResultJson edit(@RequestBody @Valid WaterStationsPatrol waterStationsPatrol){
int i =waterStationsPatrolService.updateByPrimaryKeySelective(waterStationsPatrol);
ResultJson resultJson = new ResultJson();
if (1==i){
resultJson = new ResultJson("200","修改成功");
}else {
resultJson = new ResultJson("500","insert faild");
}
return resultJson;
}
@LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理删除")
@DeleteMapping("/del")
public ResultJson reomve(@RequestBody WaterStationsPatrol waterStationsPatrol, HttpServletRequest request, HttpServletResponse response){
int i =waterStationsPatrolService.deleteByPrimaryKey(waterStationsPatrol.getId());
ResultJson resultJson = new ResultJson();
if (1==i){
resultJson = new ResultJson("200","删除成功");
}else {
resultJson = new ResultJson("500","insert faild");
}
return resultJson;
}
@LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理批量删除")
@GetMapping("/batchremove")
public ResultJson reomve(String ids, HttpServletRequest request, HttpServletResponse response){
ResultJson resultJson = new ResultJson();
if (waterStationsPatrolService.deleteByPrimaryKey(ids)>0){
resultJson = new ResultJson("200","删除成功");
}else {
resultJson = new ResultJson("500","insert faild");
}
return resultJson;
}
}
... ...
package com.tianbo.warehouse.dao;
import com.tianbo.warehouse.model.WaterStationsPatrol;
import java.util.List;
public interface WaterStationsPatrolMapper {
int deleteByPrimaryKey(String id);
int insert(WaterStationsPatrol record);
int insertSelective(WaterStationsPatrol record);
WaterStationsPatrol selectByPrimaryKey(String id);
int updateByPrimaryKeySelective(WaterStationsPatrol record);
int updateByPrimaryKey(WaterStationsPatrol record);
List<WaterStationsPatrol> findAll();
}
\ No newline at end of file
... ...
package com.tianbo.warehouse.model;
import java.util.Date;
public class WaterStationsPatrol {
private String id;
private String checkprojectcontrolrommwatersupplysystem;
private String checkprojectcontrolrommsecuritysystem;
private String checkprojectcontrolrommrunningrecord;
private String checkprojectcontrolrommdocumentholder;
private String checkprojectcontrolrommground;
private String checkprojectcontrolrommresponsibleperson;
private String checkprojectcontrolrommnote;
private String checkprojectfrequencyconversionshow;
private String checkprojectfrequencyconversionclose;
private String checkprojectfrequencyconversionsanitation;
private String checkprojectfrequencyconversionresponsibleperson;
private String checkprojectfrequencyconversionnote;
private String checkprojectmeterbetweenturbidityinstrumentpowersupply;
private String checkprojectmeterbetweenturbidityinstrumentshow;
private String checkprojectmeterbetweenturbidityinstrumentappearance;
private String checkprojectmeterbetweenturbidityinstrumentrange;
private String checkprojectmeterbetweenturbidityinstrumentdetection;
private String checkprojectmeterbetweenturbidityinstrumentresponsibleperson;
private String checkprojectmeterbetweenturbidityinstrumentnote;
private String checkprojectmeterbetweenflowmeterpowersupply;
private String checkprojectmeterbetweenflowmetershow;
private String checkprojectmeterbetweenflowmeterappearance;
private String checkprojectmeterbetweenflowmeterresponsibleperson;
private String checkprojectmeterbetweenflowmeternote;
private String residualchlorineinstrumentpipeline;
private String residualchlorineinstrumentpowersupply;
private String residualchlorineinstrumentshow;
private String residualchlorineinstrumentappearance;
private String residualchlorineinstrumentpipelinmakewater;
private String residualchlorineinstrumentequipment;
private String residualchlorineinstrumentgroundsanitation;
private String residualchlorineinstrumentresponsibleperson;
private String residualchlorineinstrumentnote;
private String boosterpumproomwaterpump;
private String boosterpumproombearing;
private String boosterpumproomthevalue;
private String boosterpumproompumpbody;
private String boosterpumproomnameplate;
private String boosterpumproompacking;
private String boosterpumproomshow;
private String boosterpumproomfan;
private String boosterpumproomdrainage;
private String boosterpumproomsanitation;
private String boosterpumproomresponsibleperson;
private String boosterpumproomnote;
private String clearwaterreserviorsstairs;
private String clearwaterreserviorsvent;
private String clearwaterreserviorspoolroof;
private String clearwaterreserviorssanitation;
private String clearwaterreserviorspumpbody;
private String clearwaterreserviorsresponsibleperson;
private String clearwaterreserviorsnote;
private String betweenchlorineequipment;
private String betweenchlorinepipe;
private String betweenchlorinedosingpump;
private String betweenchlorinetraffic;
private String betweenchlorinefan;
private String betweenchlorinesanitation;
private String betweenchlorineresponsibleperson;
private String betweenchlorinenote;
private String groundenvironmentwelllids;
private String groundenvironmentdrainagen;
private String groundenvironmentwatersupply;
private String groundenvironmentcable;
private String groundenvironmentroad;
private String groundenvironmentresponsibleperson;
private String groundenvironmentnote;
private String groundsecurityillegal;
private String groundsecurityfire;
private String groundsecurityrats;
private String groundsecuritysuspiciouspersonnel;
private String groundsecurityresponsibleperson;
private String groundsecuritynote;
private String securitytoolemergency;
private String securitytoolfloodcontroland;
private String securitytoolprotective;
private String securitytoolmainteance;
private String securitytoolresponsibleperson;
private String securitytoolnote;
private Integer userid;
private Date creattime;
private String reamke1;
private String reamke2;
private String reamke3;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getCheckprojectcontrolrommwatersupplysystem() {
return checkprojectcontrolrommwatersupplysystem;
}
public void setCheckprojectcontrolrommwatersupplysystem(String checkprojectcontrolrommwatersupplysystem) {
this.checkprojectcontrolrommwatersupplysystem = checkprojectcontrolrommwatersupplysystem == null ? null : checkprojectcontrolrommwatersupplysystem.trim();
}
public String getCheckprojectcontrolrommsecuritysystem() {
return checkprojectcontrolrommsecuritysystem;
}
public void setCheckprojectcontrolrommsecuritysystem(String checkprojectcontrolrommsecuritysystem) {
this.checkprojectcontrolrommsecuritysystem = checkprojectcontrolrommsecuritysystem == null ? null : checkprojectcontrolrommsecuritysystem.trim();
}
public String getCheckprojectcontrolrommrunningrecord() {
return checkprojectcontrolrommrunningrecord;
}
public void setCheckprojectcontrolrommrunningrecord(String checkprojectcontrolrommrunningrecord) {
this.checkprojectcontrolrommrunningrecord = checkprojectcontrolrommrunningrecord == null ? null : checkprojectcontrolrommrunningrecord.trim();
}
public String getCheckprojectcontrolrommdocumentholder() {
return checkprojectcontrolrommdocumentholder;
}
public void setCheckprojectcontrolrommdocumentholder(String checkprojectcontrolrommdocumentholder) {
this.checkprojectcontrolrommdocumentholder = checkprojectcontrolrommdocumentholder == null ? null : checkprojectcontrolrommdocumentholder.trim();
}
public String getCheckprojectcontrolrommground() {
return checkprojectcontrolrommground;
}
public void setCheckprojectcontrolrommground(String checkprojectcontrolrommground) {
this.checkprojectcontrolrommground = checkprojectcontrolrommground == null ? null : checkprojectcontrolrommground.trim();
}
public String getCheckprojectcontrolrommresponsibleperson() {
return checkprojectcontrolrommresponsibleperson;
}
public void setCheckprojectcontrolrommresponsibleperson(String checkprojectcontrolrommresponsibleperson) {
this.checkprojectcontrolrommresponsibleperson = checkprojectcontrolrommresponsibleperson == null ? null : checkprojectcontrolrommresponsibleperson.trim();
}
public String getCheckprojectcontrolrommnote() {
return checkprojectcontrolrommnote;
}
public void setCheckprojectcontrolrommnote(String checkprojectcontrolrommnote) {
this.checkprojectcontrolrommnote = checkprojectcontrolrommnote == null ? null : checkprojectcontrolrommnote.trim();
}
public String getCheckprojectfrequencyconversionshow() {
return checkprojectfrequencyconversionshow;
}
public void setCheckprojectfrequencyconversionshow(String checkprojectfrequencyconversionshow) {
this.checkprojectfrequencyconversionshow = checkprojectfrequencyconversionshow == null ? null : checkprojectfrequencyconversionshow.trim();
}
public String getCheckprojectfrequencyconversionclose() {
return checkprojectfrequencyconversionclose;
}
public void setCheckprojectfrequencyconversionclose(String checkprojectfrequencyconversionclose) {
this.checkprojectfrequencyconversionclose = checkprojectfrequencyconversionclose == null ? null : checkprojectfrequencyconversionclose.trim();
}
public String getCheckprojectfrequencyconversionsanitation() {
return checkprojectfrequencyconversionsanitation;
}
public void setCheckprojectfrequencyconversionsanitation(String checkprojectfrequencyconversionsanitation) {
this.checkprojectfrequencyconversionsanitation = checkprojectfrequencyconversionsanitation == null ? null : checkprojectfrequencyconversionsanitation.trim();
}
public String getCheckprojectfrequencyconversionresponsibleperson() {
return checkprojectfrequencyconversionresponsibleperson;
}
public void setCheckprojectfrequencyconversionresponsibleperson(String checkprojectfrequencyconversionresponsibleperson) {
this.checkprojectfrequencyconversionresponsibleperson = checkprojectfrequencyconversionresponsibleperson == null ? null : checkprojectfrequencyconversionresponsibleperson.trim();
}
public String getCheckprojectfrequencyconversionnote() {
return checkprojectfrequencyconversionnote;
}
public void setCheckprojectfrequencyconversionnote(String checkprojectfrequencyconversionnote) {
this.checkprojectfrequencyconversionnote = checkprojectfrequencyconversionnote == null ? null : checkprojectfrequencyconversionnote.trim();
}
public String getCheckprojectmeterbetweenturbidityinstrumentpowersupply() {
return checkprojectmeterbetweenturbidityinstrumentpowersupply;
}
public void setCheckprojectmeterbetweenturbidityinstrumentpowersupply(String checkprojectmeterbetweenturbidityinstrumentpowersupply) {
this.checkprojectmeterbetweenturbidityinstrumentpowersupply = checkprojectmeterbetweenturbidityinstrumentpowersupply == null ? null : checkprojectmeterbetweenturbidityinstrumentpowersupply.trim();
}
public String getCheckprojectmeterbetweenturbidityinstrumentshow() {
return checkprojectmeterbetweenturbidityinstrumentshow;
}
public void setCheckprojectmeterbetweenturbidityinstrumentshow(String checkprojectmeterbetweenturbidityinstrumentshow) {
this.checkprojectmeterbetweenturbidityinstrumentshow = checkprojectmeterbetweenturbidityinstrumentshow == null ? null : checkprojectmeterbetweenturbidityinstrumentshow.trim();
}
public String getCheckprojectmeterbetweenturbidityinstrumentappearance() {
return checkprojectmeterbetweenturbidityinstrumentappearance;
}
public void setCheckprojectmeterbetweenturbidityinstrumentappearance(String checkprojectmeterbetweenturbidityinstrumentappearance) {
this.checkprojectmeterbetweenturbidityinstrumentappearance = checkprojectmeterbetweenturbidityinstrumentappearance == null ? null : checkprojectmeterbetweenturbidityinstrumentappearance.trim();
}
public String getCheckprojectmeterbetweenturbidityinstrumentrange() {
return checkprojectmeterbetweenturbidityinstrumentrange;
}
public void setCheckprojectmeterbetweenturbidityinstrumentrange(String checkprojectmeterbetweenturbidityinstrumentrange) {
this.checkprojectmeterbetweenturbidityinstrumentrange = checkprojectmeterbetweenturbidityinstrumentrange == null ? null : checkprojectmeterbetweenturbidityinstrumentrange.trim();
}
public String getCheckprojectmeterbetweenturbidityinstrumentdetection() {
return checkprojectmeterbetweenturbidityinstrumentdetection;
}
public void setCheckprojectmeterbetweenturbidityinstrumentdetection(String checkprojectmeterbetweenturbidityinstrumentdetection) {
this.checkprojectmeterbetweenturbidityinstrumentdetection = checkprojectmeterbetweenturbidityinstrumentdetection == null ? null : checkprojectmeterbetweenturbidityinstrumentdetection.trim();
}
public String getCheckprojectmeterbetweenturbidityinstrumentresponsibleperson() {
return checkprojectmeterbetweenturbidityinstrumentresponsibleperson;
}
public void setCheckprojectmeterbetweenturbidityinstrumentresponsibleperson(String checkprojectmeterbetweenturbidityinstrumentresponsibleperson) {
this.checkprojectmeterbetweenturbidityinstrumentresponsibleperson = checkprojectmeterbetweenturbidityinstrumentresponsibleperson == null ? null : checkprojectmeterbetweenturbidityinstrumentresponsibleperson.trim();
}
public String getCheckprojectmeterbetweenturbidityinstrumentnote() {
return checkprojectmeterbetweenturbidityinstrumentnote;
}
public void setCheckprojectmeterbetweenturbidityinstrumentnote(String checkprojectmeterbetweenturbidityinstrumentnote) {
this.checkprojectmeterbetweenturbidityinstrumentnote = checkprojectmeterbetweenturbidityinstrumentnote == null ? null : checkprojectmeterbetweenturbidityinstrumentnote.trim();
}
public String getCheckprojectmeterbetweenflowmeterpowersupply() {
return checkprojectmeterbetweenflowmeterpowersupply;
}
public void setCheckprojectmeterbetweenflowmeterpowersupply(String checkprojectmeterbetweenflowmeterpowersupply) {
this.checkprojectmeterbetweenflowmeterpowersupply = checkprojectmeterbetweenflowmeterpowersupply == null ? null : checkprojectmeterbetweenflowmeterpowersupply.trim();
}
public String getCheckprojectmeterbetweenflowmetershow() {
return checkprojectmeterbetweenflowmetershow;
}
public void setCheckprojectmeterbetweenflowmetershow(String checkprojectmeterbetweenflowmetershow) {
this.checkprojectmeterbetweenflowmetershow = checkprojectmeterbetweenflowmetershow == null ? null : checkprojectmeterbetweenflowmetershow.trim();
}
public String getCheckprojectmeterbetweenflowmeterappearance() {
return checkprojectmeterbetweenflowmeterappearance;
}
public void setCheckprojectmeterbetweenflowmeterappearance(String checkprojectmeterbetweenflowmeterappearance) {
this.checkprojectmeterbetweenflowmeterappearance = checkprojectmeterbetweenflowmeterappearance == null ? null : checkprojectmeterbetweenflowmeterappearance.trim();
}
public String getCheckprojectmeterbetweenflowmeterresponsibleperson() {
return checkprojectmeterbetweenflowmeterresponsibleperson;
}
public void setCheckprojectmeterbetweenflowmeterresponsibleperson(String checkprojectmeterbetweenflowmeterresponsibleperson) {
this.checkprojectmeterbetweenflowmeterresponsibleperson = checkprojectmeterbetweenflowmeterresponsibleperson == null ? null : checkprojectmeterbetweenflowmeterresponsibleperson.trim();
}
public String getCheckprojectmeterbetweenflowmeternote() {
return checkprojectmeterbetweenflowmeternote;
}
public void setCheckprojectmeterbetweenflowmeternote(String checkprojectmeterbetweenflowmeternote) {
this.checkprojectmeterbetweenflowmeternote = checkprojectmeterbetweenflowmeternote == null ? null : checkprojectmeterbetweenflowmeternote.trim();
}
public String getResidualchlorineinstrumentpipeline() {
return residualchlorineinstrumentpipeline;
}
public void setResidualchlorineinstrumentpipeline(String residualchlorineinstrumentpipeline) {
this.residualchlorineinstrumentpipeline = residualchlorineinstrumentpipeline == null ? null : residualchlorineinstrumentpipeline.trim();
}
public String getResidualchlorineinstrumentpowersupply() {
return residualchlorineinstrumentpowersupply;
}
public void setResidualchlorineinstrumentpowersupply(String residualchlorineinstrumentpowersupply) {
this.residualchlorineinstrumentpowersupply = residualchlorineinstrumentpowersupply == null ? null : residualchlorineinstrumentpowersupply.trim();
}
public String getResidualchlorineinstrumentshow() {
return residualchlorineinstrumentshow;
}
public void setResidualchlorineinstrumentshow(String residualchlorineinstrumentshow) {
this.residualchlorineinstrumentshow = residualchlorineinstrumentshow == null ? null : residualchlorineinstrumentshow.trim();
}
public String getResidualchlorineinstrumentappearance() {
return residualchlorineinstrumentappearance;
}
public void setResidualchlorineinstrumentappearance(String residualchlorineinstrumentappearance) {
this.residualchlorineinstrumentappearance = residualchlorineinstrumentappearance == null ? null : residualchlorineinstrumentappearance.trim();
}
public String getResidualchlorineinstrumentpipelinmakewater() {
return residualchlorineinstrumentpipelinmakewater;
}
public void setResidualchlorineinstrumentpipelinmakewater(String residualchlorineinstrumentpipelinmakewater) {
this.residualchlorineinstrumentpipelinmakewater = residualchlorineinstrumentpipelinmakewater == null ? null : residualchlorineinstrumentpipelinmakewater.trim();
}
public String getResidualchlorineinstrumentequipment() {
return residualchlorineinstrumentequipment;
}
public void setResidualchlorineinstrumentequipment(String residualchlorineinstrumentequipment) {
this.residualchlorineinstrumentequipment = residualchlorineinstrumentequipment == null ? null : residualchlorineinstrumentequipment.trim();
}
public String getResidualchlorineinstrumentgroundsanitation() {
return residualchlorineinstrumentgroundsanitation;
}
public void setResidualchlorineinstrumentgroundsanitation(String residualchlorineinstrumentgroundsanitation) {
this.residualchlorineinstrumentgroundsanitation = residualchlorineinstrumentgroundsanitation == null ? null : residualchlorineinstrumentgroundsanitation.trim();
}
public String getResidualchlorineinstrumentresponsibleperson() {
return residualchlorineinstrumentresponsibleperson;
}
public void setResidualchlorineinstrumentresponsibleperson(String residualchlorineinstrumentresponsibleperson) {
this.residualchlorineinstrumentresponsibleperson = residualchlorineinstrumentresponsibleperson == null ? null : residualchlorineinstrumentresponsibleperson.trim();
}
public String getResidualchlorineinstrumentnote() {
return residualchlorineinstrumentnote;
}
public void setResidualchlorineinstrumentnote(String residualchlorineinstrumentnote) {
this.residualchlorineinstrumentnote = residualchlorineinstrumentnote == null ? null : residualchlorineinstrumentnote.trim();
}
public String getBoosterpumproomwaterpump() {
return boosterpumproomwaterpump;
}
public void setBoosterpumproomwaterpump(String boosterpumproomwaterpump) {
this.boosterpumproomwaterpump = boosterpumproomwaterpump == null ? null : boosterpumproomwaterpump.trim();
}
public String getBoosterpumproombearing() {
return boosterpumproombearing;
}
public void setBoosterpumproombearing(String boosterpumproombearing) {
this.boosterpumproombearing = boosterpumproombearing == null ? null : boosterpumproombearing.trim();
}
public String getBoosterpumproomthevalue() {
return boosterpumproomthevalue;
}
public void setBoosterpumproomthevalue(String boosterpumproomthevalue) {
this.boosterpumproomthevalue = boosterpumproomthevalue == null ? null : boosterpumproomthevalue.trim();
}
public String getBoosterpumproompumpbody() {
return boosterpumproompumpbody;
}
public void setBoosterpumproompumpbody(String boosterpumproompumpbody) {
this.boosterpumproompumpbody = boosterpumproompumpbody == null ? null : boosterpumproompumpbody.trim();
}
public String getBoosterpumproomnameplate() {
return boosterpumproomnameplate;
}
public void setBoosterpumproomnameplate(String boosterpumproomnameplate) {
this.boosterpumproomnameplate = boosterpumproomnameplate == null ? null : boosterpumproomnameplate.trim();
}
public String getBoosterpumproompacking() {
return boosterpumproompacking;
}
public void setBoosterpumproompacking(String boosterpumproompacking) {
this.boosterpumproompacking = boosterpumproompacking == null ? null : boosterpumproompacking.trim();
}
public String getBoosterpumproomshow() {
return boosterpumproomshow;
}
public void setBoosterpumproomshow(String boosterpumproomshow) {
this.boosterpumproomshow = boosterpumproomshow == null ? null : boosterpumproomshow.trim();
}
public String getBoosterpumproomfan() {
return boosterpumproomfan;
}
public void setBoosterpumproomfan(String boosterpumproomfan) {
this.boosterpumproomfan = boosterpumproomfan == null ? null : boosterpumproomfan.trim();
}
public String getBoosterpumproomdrainage() {
return boosterpumproomdrainage;
}
public void setBoosterpumproomdrainage(String boosterpumproomdrainage) {
this.boosterpumproomdrainage = boosterpumproomdrainage == null ? null : boosterpumproomdrainage.trim();
}
public String getBoosterpumproomsanitation() {
return boosterpumproomsanitation;
}
public void setBoosterpumproomsanitation(String boosterpumproomsanitation) {
this.boosterpumproomsanitation = boosterpumproomsanitation == null ? null : boosterpumproomsanitation.trim();
}
public String getBoosterpumproomresponsibleperson() {
return boosterpumproomresponsibleperson;
}
public void setBoosterpumproomresponsibleperson(String boosterpumproomresponsibleperson) {
this.boosterpumproomresponsibleperson = boosterpumproomresponsibleperson == null ? null : boosterpumproomresponsibleperson.trim();
}
public String getBoosterpumproomnote() {
return boosterpumproomnote;
}
public void setBoosterpumproomnote(String boosterpumproomnote) {
this.boosterpumproomnote = boosterpumproomnote == null ? null : boosterpumproomnote.trim();
}
public String getClearwaterreserviorsstairs() {
return clearwaterreserviorsstairs;
}
public void setClearwaterreserviorsstairs(String clearwaterreserviorsstairs) {
this.clearwaterreserviorsstairs = clearwaterreserviorsstairs == null ? null : clearwaterreserviorsstairs.trim();
}
public String getClearwaterreserviorsvent() {
return clearwaterreserviorsvent;
}
public void setClearwaterreserviorsvent(String clearwaterreserviorsvent) {
this.clearwaterreserviorsvent = clearwaterreserviorsvent == null ? null : clearwaterreserviorsvent.trim();
}
public String getClearwaterreserviorspoolroof() {
return clearwaterreserviorspoolroof;
}
public void setClearwaterreserviorspoolroof(String clearwaterreserviorspoolroof) {
this.clearwaterreserviorspoolroof = clearwaterreserviorspoolroof == null ? null : clearwaterreserviorspoolroof.trim();
}
public String getClearwaterreserviorssanitation() {
return clearwaterreserviorssanitation;
}
public void setClearwaterreserviorssanitation(String clearwaterreserviorssanitation) {
this.clearwaterreserviorssanitation = clearwaterreserviorssanitation == null ? null : clearwaterreserviorssanitation.trim();
}
public String getClearwaterreserviorspumpbody() {
return clearwaterreserviorspumpbody;
}
public void setClearwaterreserviorspumpbody(String clearwaterreserviorspumpbody) {
this.clearwaterreserviorspumpbody = clearwaterreserviorspumpbody == null ? null : clearwaterreserviorspumpbody.trim();
}
public String getClearwaterreserviorsresponsibleperson() {
return clearwaterreserviorsresponsibleperson;
}
public void setClearwaterreserviorsresponsibleperson(String clearwaterreserviorsresponsibleperson) {
this.clearwaterreserviorsresponsibleperson = clearwaterreserviorsresponsibleperson == null ? null : clearwaterreserviorsresponsibleperson.trim();
}
public String getClearwaterreserviorsnote() {
return clearwaterreserviorsnote;
}
public void setClearwaterreserviorsnote(String clearwaterreserviorsnote) {
this.clearwaterreserviorsnote = clearwaterreserviorsnote == null ? null : clearwaterreserviorsnote.trim();
}
public String getBetweenchlorineequipment() {
return betweenchlorineequipment;
}
public void setBetweenchlorineequipment(String betweenchlorineequipment) {
this.betweenchlorineequipment = betweenchlorineequipment == null ? null : betweenchlorineequipment.trim();
}
public String getBetweenchlorinepipe() {
return betweenchlorinepipe;
}
public void setBetweenchlorinepipe(String betweenchlorinepipe) {
this.betweenchlorinepipe = betweenchlorinepipe == null ? null : betweenchlorinepipe.trim();
}
public String getBetweenchlorinedosingpump() {
return betweenchlorinedosingpump;
}
public void setBetweenchlorinedosingpump(String betweenchlorinedosingpump) {
this.betweenchlorinedosingpump = betweenchlorinedosingpump == null ? null : betweenchlorinedosingpump.trim();
}
public String getBetweenchlorinetraffic() {
return betweenchlorinetraffic;
}
public void setBetweenchlorinetraffic(String betweenchlorinetraffic) {
this.betweenchlorinetraffic = betweenchlorinetraffic == null ? null : betweenchlorinetraffic.trim();
}
public String getBetweenchlorinefan() {
return betweenchlorinefan;
}
public void setBetweenchlorinefan(String betweenchlorinefan) {
this.betweenchlorinefan = betweenchlorinefan == null ? null : betweenchlorinefan.trim();
}
public String getBetweenchlorinesanitation() {
return betweenchlorinesanitation;
}
public void setBetweenchlorinesanitation(String betweenchlorinesanitation) {
this.betweenchlorinesanitation = betweenchlorinesanitation == null ? null : betweenchlorinesanitation.trim();
}
public String getBetweenchlorineresponsibleperson() {
return betweenchlorineresponsibleperson;
}
public void setBetweenchlorineresponsibleperson(String betweenchlorineresponsibleperson) {
this.betweenchlorineresponsibleperson = betweenchlorineresponsibleperson == null ? null : betweenchlorineresponsibleperson.trim();
}
public String getBetweenchlorinenote() {
return betweenchlorinenote;
}
public void setBetweenchlorinenote(String betweenchlorinenote) {
this.betweenchlorinenote = betweenchlorinenote == null ? null : betweenchlorinenote.trim();
}
public String getGroundenvironmentwelllids() {
return groundenvironmentwelllids;
}
public void setGroundenvironmentwelllids(String groundenvironmentwelllids) {
this.groundenvironmentwelllids = groundenvironmentwelllids == null ? null : groundenvironmentwelllids.trim();
}
public String getGroundenvironmentdrainagen() {
return groundenvironmentdrainagen;
}
public void setGroundenvironmentdrainagen(String groundenvironmentdrainagen) {
this.groundenvironmentdrainagen = groundenvironmentdrainagen == null ? null : groundenvironmentdrainagen.trim();
}
public String getGroundenvironmentwatersupply() {
return groundenvironmentwatersupply;
}
public void setGroundenvironmentwatersupply(String groundenvironmentwatersupply) {
this.groundenvironmentwatersupply = groundenvironmentwatersupply == null ? null : groundenvironmentwatersupply.trim();
}
public String getGroundenvironmentcable() {
return groundenvironmentcable;
}
public void setGroundenvironmentcable(String groundenvironmentcable) {
this.groundenvironmentcable = groundenvironmentcable == null ? null : groundenvironmentcable.trim();
}
public String getGroundenvironmentroad() {
return groundenvironmentroad;
}
public void setGroundenvironmentroad(String groundenvironmentroad) {
this.groundenvironmentroad = groundenvironmentroad == null ? null : groundenvironmentroad.trim();
}
public String getGroundenvironmentresponsibleperson() {
return groundenvironmentresponsibleperson;
}
public void setGroundenvironmentresponsibleperson(String groundenvironmentresponsibleperson) {
this.groundenvironmentresponsibleperson = groundenvironmentresponsibleperson == null ? null : groundenvironmentresponsibleperson.trim();
}
public String getGroundenvironmentnote() {
return groundenvironmentnote;
}
public void setGroundenvironmentnote(String groundenvironmentnote) {
this.groundenvironmentnote = groundenvironmentnote == null ? null : groundenvironmentnote.trim();
}
public String getGroundsecurityillegal() {
return groundsecurityillegal;
}
public void setGroundsecurityillegal(String groundsecurityillegal) {
this.groundsecurityillegal = groundsecurityillegal == null ? null : groundsecurityillegal.trim();
}
public String getGroundsecurityfire() {
return groundsecurityfire;
}
public void setGroundsecurityfire(String groundsecurityfire) {
this.groundsecurityfire = groundsecurityfire == null ? null : groundsecurityfire.trim();
}
public String getGroundsecurityrats() {
return groundsecurityrats;
}
public void setGroundsecurityrats(String groundsecurityrats) {
this.groundsecurityrats = groundsecurityrats == null ? null : groundsecurityrats.trim();
}
public String getGroundsecuritysuspiciouspersonnel() {
return groundsecuritysuspiciouspersonnel;
}
public void setGroundsecuritysuspiciouspersonnel(String groundsecuritysuspiciouspersonnel) {
this.groundsecuritysuspiciouspersonnel = groundsecuritysuspiciouspersonnel == null ? null : groundsecuritysuspiciouspersonnel.trim();
}
public String getGroundsecurityresponsibleperson() {
return groundsecurityresponsibleperson;
}
public void setGroundsecurityresponsibleperson(String groundsecurityresponsibleperson) {
this.groundsecurityresponsibleperson = groundsecurityresponsibleperson == null ? null : groundsecurityresponsibleperson.trim();
}
public String getGroundsecuritynote() {
return groundsecuritynote;
}
public void setGroundsecuritynote(String groundsecuritynote) {
this.groundsecuritynote = groundsecuritynote == null ? null : groundsecuritynote.trim();
}
public String getSecuritytoolemergency() {
return securitytoolemergency;
}
public void setSecuritytoolemergency(String securitytoolemergency) {
this.securitytoolemergency = securitytoolemergency == null ? null : securitytoolemergency.trim();
}
public String getSecuritytoolfloodcontroland() {
return securitytoolfloodcontroland;
}
public void setSecuritytoolfloodcontroland(String securitytoolfloodcontroland) {
this.securitytoolfloodcontroland = securitytoolfloodcontroland == null ? null : securitytoolfloodcontroland.trim();
}
public String getSecuritytoolprotective() {
return securitytoolprotective;
}
public void setSecuritytoolprotective(String securitytoolprotective) {
this.securitytoolprotective = securitytoolprotective == null ? null : securitytoolprotective.trim();
}
public String getSecuritytoolmainteance() {
return securitytoolmainteance;
}
public void setSecuritytoolmainteance(String securitytoolmainteance) {
this.securitytoolmainteance = securitytoolmainteance == null ? null : securitytoolmainteance.trim();
}
public String getSecuritytoolresponsibleperson() {
return securitytoolresponsibleperson;
}
public void setSecuritytoolresponsibleperson(String securitytoolresponsibleperson) {
this.securitytoolresponsibleperson = securitytoolresponsibleperson == null ? null : securitytoolresponsibleperson.trim();
}
public String getSecuritytoolnote() {
return securitytoolnote;
}
public void setSecuritytoolnote(String securitytoolnote) {
this.securitytoolnote = securitytoolnote == null ? null : securitytoolnote.trim();
}
public Integer getUserid() {
return userid;
}
public void setUserid(Integer userid) {
this.userid = userid;
}
public Date getCreattime() {
return creattime;
}
public void setCreattime(Date creattime) {
this.creattime = creattime;
}
public String getReamke1() {
return reamke1;
}
public void setReamke1(String reamke1) {
this.reamke1 = reamke1 == null ? null : reamke1.trim();
}
public String getReamke2() {
return reamke2;
}
public void setReamke2(String reamke2) {
this.reamke2 = reamke2 == null ? null : reamke2.trim();
}
public String getReamke3() {
return reamke3;
}
public void setReamke3(String reamke3) {
this.reamke3 = reamke3 == null ? null : reamke3.trim();
}
}
\ No newline at end of file
... ...
package com.tianbo.warehouse.service.water;
import com.github.pagehelper.PageInfo;
import com.tianbo.warehouse.model.StaffApartmentComeCar;
import com.tianbo.warehouse.model.WaterStationsPatrol;
public interface WaterStationsPatrolService {
PageInfo<WaterStationsPatrol> findAll(int pageNum, int pageSize);
int insertSelective(WaterStationsPatrol staffApartmentComeCar);
int updateByPrimaryKeySelective(WaterStationsPatrol staffApartmentComeCar);
int deleteByPrimaryKey(String id);
}
... ...
package com.tianbo.warehouse.service.water.imp;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.tianbo.warehouse.dao.StaffApartmentComeCarMapper;
import com.tianbo.warehouse.dao.WaterStationsPatrolMapper;
import com.tianbo.warehouse.model.StaffApartmentComeCar;
import com.tianbo.warehouse.model.WaterStationsPatrol;
import com.tianbo.warehouse.service.satff.ComeCarService;
import com.tianbo.warehouse.service.water.WaterStationsPatrolService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List;
import java.util.UUID;
@Service
public class WaterStationsPatrolServiceImp implements WaterStationsPatrolService {
@Autowired
WaterStationsPatrolMapper waterStationsPatrolMapper;
@Override
public PageInfo<WaterStationsPatrol> findAll(int pageNum, int pageSize) {
Page<WaterStationsPatrol> page = PageHelper.startPage(pageNum,pageSize);
List<WaterStationsPatrol> list = waterStationsPatrolMapper.findAll();
PageInfo<WaterStationsPatrol> result = new PageInfo<>(list);
return result;
}
@Override
public int insertSelective(WaterStationsPatrol staffApartmentComeCar) {
staffApartmentComeCar.setId(UUID.randomUUID().toString());
staffApartmentComeCar.setCreattime(new Date());
return waterStationsPatrolMapper.insertSelective(staffApartmentComeCar);
}
@Override
public int updateByPrimaryKeySelective(WaterStationsPatrol staffApartmentComeCar) {
staffApartmentComeCar.setCreattime(new Date());
return waterStationsPatrolMapper.updateByPrimaryKeySelective(staffApartmentComeCar);
}
@Override
public int deleteByPrimaryKey(String companyId) {
if (companyId.contains(",")){
try {
String[] split = companyId.split(",");
for (int i=0; i<split.length; i++){
waterStationsPatrolMapper.deleteByPrimaryKey(split[i]);
}
return 1;
}catch (Exception e){
e.printStackTrace();
return 0;
}
}else {
return waterStationsPatrolMapper.deleteByPrimaryKey(companyId);
}
}
}
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.tianbo.warehouse.dao.WaterStationsPatrolMapper" >
<resultMap id="BaseResultMap" type="com.tianbo.warehouse.model.WaterStationsPatrol" >
<id column="id" property="id" jdbcType="VARCHAR" />
<result column="checkProjectControlRommWaterSupplySystem" property="checkprojectcontrolrommwatersupplysystem" jdbcType="VARCHAR" />
<result column="checkProjectControlRommSecuritySystem" property="checkprojectcontrolrommsecuritysystem" jdbcType="VARCHAR" />
<result column="checkProjectControlRommRunningRecord" property="checkprojectcontrolrommrunningrecord" jdbcType="VARCHAR" />
<result column="checkProjectControlRommDocumentHolder" property="checkprojectcontrolrommdocumentholder" jdbcType="VARCHAR" />
<result column="checkProjectControlRommGround" property="checkprojectcontrolrommground" jdbcType="VARCHAR" />
<result column="checkProjectControlRommResponsiblePerson" property="checkprojectcontrolrommresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectControlRommnote" property="checkprojectcontrolrommnote" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionShow" property="checkprojectfrequencyconversionshow" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionClose" property="checkprojectfrequencyconversionclose" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionSanitation" property="checkprojectfrequencyconversionsanitation" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionResponsiblePerson" property="checkprojectfrequencyconversionresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionNote" property="checkprojectfrequencyconversionnote" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentPowerSupply" property="checkprojectmeterbetweenturbidityinstrumentpowersupply" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentShow" property="checkprojectmeterbetweenturbidityinstrumentshow" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentAppearance" property="checkprojectmeterbetweenturbidityinstrumentappearance" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentRange" property="checkprojectmeterbetweenturbidityinstrumentrange" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentDetection" property="checkprojectmeterbetweenturbidityinstrumentdetection" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson" property="checkprojectmeterbetweenturbidityinstrumentresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentNote" property="checkprojectmeterbetweenturbidityinstrumentnote" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterPowerSupply" property="checkprojectmeterbetweenflowmeterpowersupply" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterShow" property="checkprojectmeterbetweenflowmetershow" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterAppearance" property="checkprojectmeterbetweenflowmeterappearance" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterResponsiblePerson" property="checkprojectmeterbetweenflowmeterresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterNote" property="checkprojectmeterbetweenflowmeternote" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentPipeline" property="residualchlorineinstrumentpipeline" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentPowerSupply" property="residualchlorineinstrumentpowersupply" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentShow" property="residualchlorineinstrumentshow" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentAppearance" property="residualchlorineinstrumentappearance" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentPipelinMakeWater" property="residualchlorineinstrumentpipelinmakewater" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentEquipment" property="residualchlorineinstrumentequipment" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentGroundSanitation" property="residualchlorineinstrumentgroundsanitation" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentResponsiblePerson" property="residualchlorineinstrumentresponsibleperson" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentNote" property="residualchlorineinstrumentnote" jdbcType="VARCHAR" />
<result column="boosterPumpRoomWaterPump" property="boosterpumproomwaterpump" jdbcType="VARCHAR" />
<result column="boosterPumpRoomBearing" property="boosterpumproombearing" jdbcType="VARCHAR" />
<result column="boosterPumpRoomTheValue" property="boosterpumproomthevalue" jdbcType="VARCHAR" />
<result column="boosterPumpRoomPumpBody" property="boosterpumproompumpbody" jdbcType="VARCHAR" />
<result column="boosterPumpRoomNamePlate" property="boosterpumproomnameplate" jdbcType="VARCHAR" />
<result column="boosterPumpRoomPacking" property="boosterpumproompacking" jdbcType="VARCHAR" />
<result column="boosterPumpRoomShow" property="boosterpumproomshow" jdbcType="VARCHAR" />
<result column="boosterPumpRoomFan" property="boosterpumproomfan" jdbcType="VARCHAR" />
<result column="boosterPumpRoomDrainage" property="boosterpumproomdrainage" jdbcType="VARCHAR" />
<result column="boosterPumpRoomSanitation" property="boosterpumproomsanitation" jdbcType="VARCHAR" />
<result column="boosterPumpRoomResponsiblePerson" property="boosterpumproomresponsibleperson" jdbcType="VARCHAR" />
<result column="boosterPumpRoomNote" property="boosterpumproomnote" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsStairs" property="clearwaterreserviorsstairs" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsVent" property="clearwaterreserviorsvent" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsPoolRoof" property="clearwaterreserviorspoolroof" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsSanitation" property="clearwaterreserviorssanitation" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsPumpBody" property="clearwaterreserviorspumpbody" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsResponsiblePerson" property="clearwaterreserviorsresponsibleperson" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsNote" property="clearwaterreserviorsnote" jdbcType="VARCHAR" />
<result column="betweenChlorineEquipment" property="betweenchlorineequipment" jdbcType="VARCHAR" />
<result column="betweenChlorinePipe" property="betweenchlorinepipe" jdbcType="VARCHAR" />
<result column="betweenChlorineDosingPump" property="betweenchlorinedosingpump" jdbcType="VARCHAR" />
<result column="betweenChlorineTraffic" property="betweenchlorinetraffic" jdbcType="VARCHAR" />
<result column="betweenChlorineFan" property="betweenchlorinefan" jdbcType="VARCHAR" />
<result column="betweenChlorineSanitation" property="betweenchlorinesanitation" jdbcType="VARCHAR" />
<result column="betweenChlorineResponsiblePerson" property="betweenchlorineresponsibleperson" jdbcType="VARCHAR" />
<result column="betweenChlorineNote" property="betweenchlorinenote" jdbcType="VARCHAR" />
<result column="groundEnvironmentWellLIDS" property="groundenvironmentwelllids" jdbcType="VARCHAR" />
<result column="groundEnvironmentDrainagen" property="groundenvironmentdrainagen" jdbcType="VARCHAR" />
<result column="groundEnvironmentWaterSupply" property="groundenvironmentwatersupply" jdbcType="VARCHAR" />
<result column="groundEnvironmentCable" property="groundenvironmentcable" jdbcType="VARCHAR" />
<result column="groundEnvironmentRoad" property="groundenvironmentroad" jdbcType="VARCHAR" />
<result column="groundEnvironmentResponsiblePerson" property="groundenvironmentresponsibleperson" jdbcType="VARCHAR" />
<result column="groundEnvironmentNote" property="groundenvironmentnote" jdbcType="VARCHAR" />
<result column="groundSecurityIllegal" property="groundsecurityillegal" jdbcType="VARCHAR" />
<result column="groundSecurityFire" property="groundsecurityfire" jdbcType="VARCHAR" />
<result column="groundSecurityRats" property="groundsecurityrats" jdbcType="VARCHAR" />
<result column="groundSecuritySuspiciousPersonnel" property="groundsecuritysuspiciouspersonnel" jdbcType="VARCHAR" />
<result column="groundSecurityResponsiblePerson" property="groundsecurityresponsibleperson" jdbcType="VARCHAR" />
<result column="groundSecurityNote" property="groundsecuritynote" jdbcType="VARCHAR" />
<result column="securityToolEmergency" property="securitytoolemergency" jdbcType="VARCHAR" />
<result column="securityToolFloodControlAnd" property="securitytoolfloodcontroland" jdbcType="VARCHAR" />
<result column="securityToolProtective" property="securitytoolprotective" jdbcType="VARCHAR" />
<result column="securityToolMainteance" property="securitytoolmainteance" jdbcType="VARCHAR" />
<result column="securityToolResponsiblePerson" property="securitytoolresponsibleperson" jdbcType="VARCHAR" />
<result column="securityToolNote" property="securitytoolnote" jdbcType="VARCHAR" />
<result column="userId" property="userid" jdbcType="INTEGER" />
<result column="creatTime" property="creattime" jdbcType="TIMESTAMP" />
<result column="reamke1" property="reamke1" jdbcType="VARCHAR" />
<result column="reamke2" property="reamke2" jdbcType="VARCHAR" />
<result column="reamke3" property="reamke3" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List" >
id, checkProjectControlRommWaterSupplySystem, checkProjectControlRommSecuritySystem,
checkProjectControlRommRunningRecord, checkProjectControlRommDocumentHolder, checkProjectControlRommGround,
checkProjectControlRommResponsiblePerson, checkProjectControlRommnote, checkProjectFrequencyConversionShow,
checkProjectFrequencyConversionClose, checkProjectFrequencyConversionSanitation,
checkProjectFrequencyConversionResponsiblePerson, checkProjectFrequencyConversionNote,
checkProjectMeterBetweenTurbidityInstrumentPowerSupply, checkProjectMeterBetweenTurbidityInstrumentShow,
checkProjectMeterBetweenTurbidityInstrumentAppearance, checkProjectMeterBetweenTurbidityInstrumentRange,
checkProjectMeterBetweenTurbidityInstrumentDetection, checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
checkProjectMeterBetweenTurbidityInstrumentNote, checkProjectMeterBetweenFlowMeterPowerSupply,
checkProjectMeterBetweenFlowMeterShow, checkProjectMeterBetweenFlowMeterAppearance,
checkProjectMeterBetweenFlowMeterResponsiblePerson, checkProjectMeterBetweenFlowMeterNote,
residualChlorineInstrumentPipeline, residualChlorineInstrumentPowerSupply, residualChlorineInstrumentShow,
residualChlorineInstrumentAppearance, residualChlorineInstrumentPipelinMakeWater,
residualChlorineInstrumentEquipment, residualChlorineInstrumentGroundSanitation,
residualChlorineInstrumentResponsiblePerson, residualChlorineInstrumentNote, boosterPumpRoomWaterPump,
boosterPumpRoomBearing, boosterPumpRoomTheValue, boosterPumpRoomPumpBody, boosterPumpRoomNamePlate,
boosterPumpRoomPacking, boosterPumpRoomShow, boosterPumpRoomFan, boosterPumpRoomDrainage,
boosterPumpRoomSanitation, boosterPumpRoomResponsiblePerson, boosterPumpRoomNote,
clearWaterReserviorsStairs, clearWaterReserviorsVent, clearWaterReserviorsPoolRoof,
clearWaterReserviorsSanitation, clearWaterReserviorsPumpBody, clearWaterReserviorsResponsiblePerson,
clearWaterReserviorsNote, betweenChlorineEquipment, betweenChlorinePipe, betweenChlorineDosingPump,
betweenChlorineTraffic, betweenChlorineFan, betweenChlorineSanitation, betweenChlorineResponsiblePerson,
betweenChlorineNote, groundEnvironmentWellLIDS, groundEnvironmentDrainagen, groundEnvironmentWaterSupply,
groundEnvironmentCable, groundEnvironmentRoad, groundEnvironmentResponsiblePerson,
groundEnvironmentNote, groundSecurityIllegal, groundSecurityFire, groundSecurityRats,
groundSecuritySuspiciousPersonnel, groundSecurityResponsiblePerson, groundSecurityNote,
securityToolEmergency, securityToolFloodControlAnd, securityToolProtective, securityToolMainteance,
securityToolResponsiblePerson, securityToolNote, userId, creatTime, reamke1, reamke2,
reamke3
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
select
<include refid="Base_Column_List" />
from water_stations_patrol
where id = #{id,jdbcType=VARCHAR}
</select>
<select id="findAll" resultMap="BaseResultMap" >
select
<include refid="Base_Column_List" />
from water_stations_patrol
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
delete from water_stations_patrol
where id = #{id,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
insert into water_stations_patrol (id, checkProjectControlRommWaterSupplySystem,
checkProjectControlRommSecuritySystem, checkProjectControlRommRunningRecord,
checkProjectControlRommDocumentHolder, checkProjectControlRommGround,
checkProjectControlRommResponsiblePerson, checkProjectControlRommnote,
checkProjectFrequencyConversionShow, checkProjectFrequencyConversionClose,
checkProjectFrequencyConversionSanitation, checkProjectFrequencyConversionResponsiblePerson,
checkProjectFrequencyConversionNote, checkProjectMeterBetweenTurbidityInstrumentPowerSupply,
checkProjectMeterBetweenTurbidityInstrumentShow, checkProjectMeterBetweenTurbidityInstrumentAppearance,
checkProjectMeterBetweenTurbidityInstrumentRange, checkProjectMeterBetweenTurbidityInstrumentDetection,
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
checkProjectMeterBetweenTurbidityInstrumentNote, checkProjectMeterBetweenFlowMeterPowerSupply,
checkProjectMeterBetweenFlowMeterShow, checkProjectMeterBetweenFlowMeterAppearance,
checkProjectMeterBetweenFlowMeterResponsiblePerson, checkProjectMeterBetweenFlowMeterNote,
residualChlorineInstrumentPipeline, residualChlorineInstrumentPowerSupply,
residualChlorineInstrumentShow, residualChlorineInstrumentAppearance,
residualChlorineInstrumentPipelinMakeWater, residualChlorineInstrumentEquipment,
residualChlorineInstrumentGroundSanitation, residualChlorineInstrumentResponsiblePerson,
residualChlorineInstrumentNote, boosterPumpRoomWaterPump,
boosterPumpRoomBearing, boosterPumpRoomTheValue,
boosterPumpRoomPumpBody, boosterPumpRoomNamePlate,
boosterPumpRoomPacking, boosterPumpRoomShow,
boosterPumpRoomFan, boosterPumpRoomDrainage,
boosterPumpRoomSanitation, boosterPumpRoomResponsiblePerson,
boosterPumpRoomNote, clearWaterReserviorsStairs,
clearWaterReserviorsVent, clearWaterReserviorsPoolRoof,
clearWaterReserviorsSanitation, clearWaterReserviorsPumpBody,
clearWaterReserviorsResponsiblePerson, clearWaterReserviorsNote,
betweenChlorineEquipment, betweenChlorinePipe,
betweenChlorineDosingPump, betweenChlorineTraffic,
betweenChlorineFan, betweenChlorineSanitation,
betweenChlorineResponsiblePerson, betweenChlorineNote,
groundEnvironmentWellLIDS, groundEnvironmentDrainagen,
groundEnvironmentWaterSupply, groundEnvironmentCable,
groundEnvironmentRoad, groundEnvironmentResponsiblePerson,
groundEnvironmentNote, groundSecurityIllegal,
groundSecurityFire, groundSecurityRats,
groundSecuritySuspiciousPersonnel, groundSecurityResponsiblePerson,
groundSecurityNote, securityToolEmergency,
securityToolFloodControlAnd, securityToolProtective,
securityToolMainteance, securityToolResponsiblePerson,
securityToolNote, userId, creatTime,
reamke1, reamke2, reamke3
)
values (#{id,jdbcType=VARCHAR}, #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
#{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR}, #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
#{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR}, #{checkprojectcontrolrommground,jdbcType=VARCHAR},
#{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR}, #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
#{checkprojectfrequencyconversionshow,jdbcType=VARCHAR}, #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
#{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR}, #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
#{checkprojectfrequencyconversionnote,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
#{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
#{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
#{residualchlorineinstrumentpipeline,jdbcType=VARCHAR}, #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
#{residualchlorineinstrumentshow,jdbcType=VARCHAR}, #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
#{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR}, #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
#{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR}, #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
#{residualchlorineinstrumentnote,jdbcType=VARCHAR}, #{boosterpumproomwaterpump,jdbcType=VARCHAR},
#{boosterpumproombearing,jdbcType=VARCHAR}, #{boosterpumproomthevalue,jdbcType=VARCHAR},
#{boosterpumproompumpbody,jdbcType=VARCHAR}, #{boosterpumproomnameplate,jdbcType=VARCHAR},
#{boosterpumproompacking,jdbcType=VARCHAR}, #{boosterpumproomshow,jdbcType=VARCHAR},
#{boosterpumproomfan,jdbcType=VARCHAR}, #{boosterpumproomdrainage,jdbcType=VARCHAR},
#{boosterpumproomsanitation,jdbcType=VARCHAR}, #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
#{boosterpumproomnote,jdbcType=VARCHAR}, #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
#{clearwaterreserviorsvent,jdbcType=VARCHAR}, #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
#{clearwaterreserviorssanitation,jdbcType=VARCHAR}, #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
#{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR}, #{clearwaterreserviorsnote,jdbcType=VARCHAR},
#{betweenchlorineequipment,jdbcType=VARCHAR}, #{betweenchlorinepipe,jdbcType=VARCHAR},
#{betweenchlorinedosingpump,jdbcType=VARCHAR}, #{betweenchlorinetraffic,jdbcType=VARCHAR},
#{betweenchlorinefan,jdbcType=VARCHAR}, #{betweenchlorinesanitation,jdbcType=VARCHAR},
#{betweenchlorineresponsibleperson,jdbcType=VARCHAR}, #{betweenchlorinenote,jdbcType=VARCHAR},
#{groundenvironmentwelllids,jdbcType=VARCHAR}, #{groundenvironmentdrainagen,jdbcType=VARCHAR},
#{groundenvironmentwatersupply,jdbcType=VARCHAR}, #{groundenvironmentcable,jdbcType=VARCHAR},
#{groundenvironmentroad,jdbcType=VARCHAR}, #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
#{groundenvironmentnote,jdbcType=VARCHAR}, #{groundsecurityillegal,jdbcType=VARCHAR},
#{groundsecurityfire,jdbcType=VARCHAR}, #{groundsecurityrats,jdbcType=VARCHAR},
#{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR}, #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
#{groundsecuritynote,jdbcType=VARCHAR}, #{securitytoolemergency,jdbcType=VARCHAR},
#{securitytoolfloodcontroland,jdbcType=VARCHAR}, #{securitytoolprotective,jdbcType=VARCHAR},
#{securitytoolmainteance,jdbcType=VARCHAR}, #{securitytoolresponsibleperson,jdbcType=VARCHAR},
#{securitytoolnote,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, #{creattime,jdbcType=TIMESTAMP},
#{reamke1,jdbcType=VARCHAR}, #{reamke2,jdbcType=VARCHAR}, #{reamke3,jdbcType=VARCHAR}
)
</insert>
<insert id="insertSelective" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
insert into water_stations_patrol
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="id != null" >
id,
</if>
<if test="checkprojectcontrolrommwatersupplysystem != null" >
checkProjectControlRommWaterSupplySystem,
</if>
<if test="checkprojectcontrolrommsecuritysystem != null" >
checkProjectControlRommSecuritySystem,
</if>
<if test="checkprojectcontrolrommrunningrecord != null" >
checkProjectControlRommRunningRecord,
</if>
<if test="checkprojectcontrolrommdocumentholder != null" >
checkProjectControlRommDocumentHolder,
</if>
<if test="checkprojectcontrolrommground != null" >
checkProjectControlRommGround,
</if>
<if test="checkprojectcontrolrommresponsibleperson != null" >
checkProjectControlRommResponsiblePerson,
</if>
<if test="checkprojectcontrolrommnote != null" >
checkProjectControlRommnote,
</if>
<if test="checkprojectfrequencyconversionshow != null" >
checkProjectFrequencyConversionShow,
</if>
<if test="checkprojectfrequencyconversionclose != null" >
checkProjectFrequencyConversionClose,
</if>
<if test="checkprojectfrequencyconversionsanitation != null" >
checkProjectFrequencyConversionSanitation,
</if>
<if test="checkprojectfrequencyconversionresponsibleperson != null" >
checkProjectFrequencyConversionResponsiblePerson,
</if>
<if test="checkprojectfrequencyconversionnote != null" >
checkProjectFrequencyConversionNote,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
checkProjectMeterBetweenTurbidityInstrumentPowerSupply,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
checkProjectMeterBetweenTurbidityInstrumentShow,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
checkProjectMeterBetweenTurbidityInstrumentAppearance,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
checkProjectMeterBetweenTurbidityInstrumentRange,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
checkProjectMeterBetweenTurbidityInstrumentDetection,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
checkProjectMeterBetweenTurbidityInstrumentNote,
</if>
<if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
checkProjectMeterBetweenFlowMeterPowerSupply,
</if>
<if test="checkprojectmeterbetweenflowmetershow != null" >
checkProjectMeterBetweenFlowMeterShow,
</if>
<if test="checkprojectmeterbetweenflowmeterappearance != null" >
checkProjectMeterBetweenFlowMeterAppearance,
</if>
<if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
checkProjectMeterBetweenFlowMeterResponsiblePerson,
</if>
<if test="checkprojectmeterbetweenflowmeternote != null" >
checkProjectMeterBetweenFlowMeterNote,
</if>
<if test="residualchlorineinstrumentpipeline != null" >
residualChlorineInstrumentPipeline,
</if>
<if test="residualchlorineinstrumentpowersupply != null" >
residualChlorineInstrumentPowerSupply,
</if>
<if test="residualchlorineinstrumentshow != null" >
residualChlorineInstrumentShow,
</if>
<if test="residualchlorineinstrumentappearance != null" >
residualChlorineInstrumentAppearance,
</if>
<if test="residualchlorineinstrumentpipelinmakewater != null" >
residualChlorineInstrumentPipelinMakeWater,
</if>
<if test="residualchlorineinstrumentequipment != null" >
residualChlorineInstrumentEquipment,
</if>
<if test="residualchlorineinstrumentgroundsanitation != null" >
residualChlorineInstrumentGroundSanitation,
</if>
<if test="residualchlorineinstrumentresponsibleperson != null" >
residualChlorineInstrumentResponsiblePerson,
</if>
<if test="residualchlorineinstrumentnote != null" >
residualChlorineInstrumentNote,
</if>
<if test="boosterpumproomwaterpump != null" >
boosterPumpRoomWaterPump,
</if>
<if test="boosterpumproombearing != null" >
boosterPumpRoomBearing,
</if>
<if test="boosterpumproomthevalue != null" >
boosterPumpRoomTheValue,
</if>
<if test="boosterpumproompumpbody != null" >
boosterPumpRoomPumpBody,
</if>
<if test="boosterpumproomnameplate != null" >
boosterPumpRoomNamePlate,
</if>
<if test="boosterpumproompacking != null" >
boosterPumpRoomPacking,
</if>
<if test="boosterpumproomshow != null" >
boosterPumpRoomShow,
</if>
<if test="boosterpumproomfan != null" >
boosterPumpRoomFan,
</if>
<if test="boosterpumproomdrainage != null" >
boosterPumpRoomDrainage,
</if>
<if test="boosterpumproomsanitation != null" >
boosterPumpRoomSanitation,
</if>
<if test="boosterpumproomresponsibleperson != null" >
boosterPumpRoomResponsiblePerson,
</if>
<if test="boosterpumproomnote != null" >
boosterPumpRoomNote,
</if>
<if test="clearwaterreserviorsstairs != null" >
clearWaterReserviorsStairs,
</if>
<if test="clearwaterreserviorsvent != null" >
clearWaterReserviorsVent,
</if>
<if test="clearwaterreserviorspoolroof != null" >
clearWaterReserviorsPoolRoof,
</if>
<if test="clearwaterreserviorssanitation != null" >
clearWaterReserviorsSanitation,
</if>
<if test="clearwaterreserviorspumpbody != null" >
clearWaterReserviorsPumpBody,
</if>
<if test="clearwaterreserviorsresponsibleperson != null" >
clearWaterReserviorsResponsiblePerson,
</if>
<if test="clearwaterreserviorsnote != null" >
clearWaterReserviorsNote,
</if>
<if test="betweenchlorineequipment != null" >
betweenChlorineEquipment,
</if>
<if test="betweenchlorinepipe != null" >
betweenChlorinePipe,
</if>
<if test="betweenchlorinedosingpump != null" >
betweenChlorineDosingPump,
</if>
<if test="betweenchlorinetraffic != null" >
betweenChlorineTraffic,
</if>
<if test="betweenchlorinefan != null" >
betweenChlorineFan,
</if>
<if test="betweenchlorinesanitation != null" >
betweenChlorineSanitation,
</if>
<if test="betweenchlorineresponsibleperson != null" >
betweenChlorineResponsiblePerson,
</if>
<if test="betweenchlorinenote != null" >
betweenChlorineNote,
</if>
<if test="groundenvironmentwelllids != null" >
groundEnvironmentWellLIDS,
</if>
<if test="groundenvironmentdrainagen != null" >
groundEnvironmentDrainagen,
</if>
<if test="groundenvironmentwatersupply != null" >
groundEnvironmentWaterSupply,
</if>
<if test="groundenvironmentcable != null" >
groundEnvironmentCable,
</if>
<if test="groundenvironmentroad != null" >
groundEnvironmentRoad,
</if>
<if test="groundenvironmentresponsibleperson != null" >
groundEnvironmentResponsiblePerson,
</if>
<if test="groundenvironmentnote != null" >
groundEnvironmentNote,
</if>
<if test="groundsecurityillegal != null" >
groundSecurityIllegal,
</if>
<if test="groundsecurityfire != null" >
groundSecurityFire,
</if>
<if test="groundsecurityrats != null" >
groundSecurityRats,
</if>
<if test="groundsecuritysuspiciouspersonnel != null" >
groundSecuritySuspiciousPersonnel,
</if>
<if test="groundsecurityresponsibleperson != null" >
groundSecurityResponsiblePerson,
</if>
<if test="groundsecuritynote != null" >
groundSecurityNote,
</if>
<if test="securitytoolemergency != null" >
securityToolEmergency,
</if>
<if test="securitytoolfloodcontroland != null" >
securityToolFloodControlAnd,
</if>
<if test="securitytoolprotective != null" >
securityToolProtective,
</if>
<if test="securitytoolmainteance != null" >
securityToolMainteance,
</if>
<if test="securitytoolresponsibleperson != null" >
securityToolResponsiblePerson,
</if>
<if test="securitytoolnote != null" >
securityToolNote,
</if>
<if test="userid != null" >
userId,
</if>
<if test="creattime != null" >
creatTime,
</if>
<if test="reamke1 != null" >
reamke1,
</if>
<if test="reamke2 != null" >
reamke2,
</if>
<if test="reamke3 != null" >
reamke3,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="id != null" >
#{id,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommwatersupplysystem != null" >
#{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommsecuritysystem != null" >
#{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommrunningrecord != null" >
#{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommdocumentholder != null" >
#{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommground != null" >
#{checkprojectcontrolrommground,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommresponsibleperson != null" >
#{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommnote != null" >
#{checkprojectcontrolrommnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionshow != null" >
#{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionclose != null" >
#{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionsanitation != null" >
#{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionresponsibleperson != null" >
#{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionnote != null" >
#{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
#{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
#{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
#{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
#{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
#{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
#{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
#{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
#{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmetershow != null" >
#{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterappearance != null" >
#{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
#{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeternote != null" >
#{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipeline != null" >
#{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpowersupply != null" >
#{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentshow != null" >
#{residualchlorineinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentappearance != null" >
#{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipelinmakewater != null" >
#{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentequipment != null" >
#{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentgroundsanitation != null" >
#{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentresponsibleperson != null" >
#{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentnote != null" >
#{residualchlorineinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomwaterpump != null" >
#{boosterpumproomwaterpump,jdbcType=VARCHAR},
</if>
<if test="boosterpumproombearing != null" >
#{boosterpumproombearing,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomthevalue != null" >
#{boosterpumproomthevalue,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompumpbody != null" >
#{boosterpumproompumpbody,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnameplate != null" >
#{boosterpumproomnameplate,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompacking != null" >
#{boosterpumproompacking,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomshow != null" >
#{boosterpumproomshow,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomfan != null" >
#{boosterpumproomfan,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomdrainage != null" >
#{boosterpumproomdrainage,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomsanitation != null" >
#{boosterpumproomsanitation,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomresponsibleperson != null" >
#{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnote != null" >
#{boosterpumproomnote,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsstairs != null" >
#{clearwaterreserviorsstairs,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsvent != null" >
#{clearwaterreserviorsvent,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspoolroof != null" >
#{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorssanitation != null" >
#{clearwaterreserviorssanitation,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspumpbody != null" >
#{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsresponsibleperson != null" >
#{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsnote != null" >
#{clearwaterreserviorsnote,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineequipment != null" >
#{betweenchlorineequipment,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinepipe != null" >
#{betweenchlorinepipe,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinedosingpump != null" >
#{betweenchlorinedosingpump,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinetraffic != null" >
#{betweenchlorinetraffic,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinefan != null" >
#{betweenchlorinefan,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinesanitation != null" >
#{betweenchlorinesanitation,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineresponsibleperson != null" >
#{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinenote != null" >
#{betweenchlorinenote,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwelllids != null" >
#{groundenvironmentwelllids,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentdrainagen != null" >
#{groundenvironmentdrainagen,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwatersupply != null" >
#{groundenvironmentwatersupply,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentcable != null" >
#{groundenvironmentcable,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentroad != null" >
#{groundenvironmentroad,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentresponsibleperson != null" >
#{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentnote != null" >
#{groundenvironmentnote,jdbcType=VARCHAR},
</if>
<if test="groundsecurityillegal != null" >
#{groundsecurityillegal,jdbcType=VARCHAR},
</if>
<if test="groundsecurityfire != null" >
#{groundsecurityfire,jdbcType=VARCHAR},
</if>
<if test="groundsecurityrats != null" >
#{groundsecurityrats,jdbcType=VARCHAR},
</if>
<if test="groundsecuritysuspiciouspersonnel != null" >
#{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
</if>
<if test="groundsecurityresponsibleperson != null" >
#{groundsecurityresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundsecuritynote != null" >
#{groundsecuritynote,jdbcType=VARCHAR},
</if>
<if test="securitytoolemergency != null" >
#{securitytoolemergency,jdbcType=VARCHAR},
</if>
<if test="securitytoolfloodcontroland != null" >
#{securitytoolfloodcontroland,jdbcType=VARCHAR},
</if>
<if test="securitytoolprotective != null" >
#{securitytoolprotective,jdbcType=VARCHAR},
</if>
<if test="securitytoolmainteance != null" >
#{securitytoolmainteance,jdbcType=VARCHAR},
</if>
<if test="securitytoolresponsibleperson != null" >
#{securitytoolresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="securitytoolnote != null" >
#{securitytoolnote,jdbcType=VARCHAR},
</if>
<if test="userid != null" >
#{userid,jdbcType=INTEGER},
</if>
<if test="creattime != null" >
#{creattime,jdbcType=TIMESTAMP},
</if>
<if test="reamke1 != null" >
#{reamke1,jdbcType=VARCHAR},
</if>
<if test="reamke2 != null" >
#{reamke2,jdbcType=VARCHAR},
</if>
<if test="reamke3 != null" >
#{reamke3,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
update water_stations_patrol
<set >
<if test="checkprojectcontrolrommwatersupplysystem != null" >
checkProjectControlRommWaterSupplySystem = #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommsecuritysystem != null" >
checkProjectControlRommSecuritySystem = #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommrunningrecord != null" >
checkProjectControlRommRunningRecord = #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommdocumentholder != null" >
checkProjectControlRommDocumentHolder = #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommground != null" >
checkProjectControlRommGround = #{checkprojectcontrolrommground,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommresponsibleperson != null" >
checkProjectControlRommResponsiblePerson = #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommnote != null" >
checkProjectControlRommnote = #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionshow != null" >
checkProjectFrequencyConversionShow = #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionclose != null" >
checkProjectFrequencyConversionClose = #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionsanitation != null" >
checkProjectFrequencyConversionSanitation = #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionresponsibleperson != null" >
checkProjectFrequencyConversionResponsiblePerson = #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionnote != null" >
checkProjectFrequencyConversionNote = #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
checkProjectMeterBetweenTurbidityInstrumentPowerSupply = #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
checkProjectMeterBetweenTurbidityInstrumentShow = #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
checkProjectMeterBetweenTurbidityInstrumentAppearance = #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
checkProjectMeterBetweenTurbidityInstrumentRange = #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
checkProjectMeterBetweenTurbidityInstrumentDetection = #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson = #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
checkProjectMeterBetweenTurbidityInstrumentNote = #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
checkProjectMeterBetweenFlowMeterPowerSupply = #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmetershow != null" >
checkProjectMeterBetweenFlowMeterShow = #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterappearance != null" >
checkProjectMeterBetweenFlowMeterAppearance = #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
checkProjectMeterBetweenFlowMeterResponsiblePerson = #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeternote != null" >
checkProjectMeterBetweenFlowMeterNote = #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipeline != null" >
residualChlorineInstrumentPipeline = #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpowersupply != null" >
residualChlorineInstrumentPowerSupply = #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentshow != null" >
residualChlorineInstrumentShow = #{residualchlorineinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentappearance != null" >
residualChlorineInstrumentAppearance = #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipelinmakewater != null" >
residualChlorineInstrumentPipelinMakeWater = #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentequipment != null" >
residualChlorineInstrumentEquipment = #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentgroundsanitation != null" >
residualChlorineInstrumentGroundSanitation = #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentresponsibleperson != null" >
residualChlorineInstrumentResponsiblePerson = #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentnote != null" >
residualChlorineInstrumentNote = #{residualchlorineinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomwaterpump != null" >
boosterPumpRoomWaterPump = #{boosterpumproomwaterpump,jdbcType=VARCHAR},
</if>
<if test="boosterpumproombearing != null" >
boosterPumpRoomBearing = #{boosterpumproombearing,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomthevalue != null" >
boosterPumpRoomTheValue = #{boosterpumproomthevalue,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompumpbody != null" >
boosterPumpRoomPumpBody = #{boosterpumproompumpbody,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnameplate != null" >
boosterPumpRoomNamePlate = #{boosterpumproomnameplate,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompacking != null" >
boosterPumpRoomPacking = #{boosterpumproompacking,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomshow != null" >
boosterPumpRoomShow = #{boosterpumproomshow,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomfan != null" >
boosterPumpRoomFan = #{boosterpumproomfan,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomdrainage != null" >
boosterPumpRoomDrainage = #{boosterpumproomdrainage,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomsanitation != null" >
boosterPumpRoomSanitation = #{boosterpumproomsanitation,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomresponsibleperson != null" >
boosterPumpRoomResponsiblePerson = #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnote != null" >
boosterPumpRoomNote = #{boosterpumproomnote,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsstairs != null" >
clearWaterReserviorsStairs = #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsvent != null" >
clearWaterReserviorsVent = #{clearwaterreserviorsvent,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspoolroof != null" >
clearWaterReserviorsPoolRoof = #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorssanitation != null" >
clearWaterReserviorsSanitation = #{clearwaterreserviorssanitation,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspumpbody != null" >
clearWaterReserviorsPumpBody = #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsresponsibleperson != null" >
clearWaterReserviorsResponsiblePerson = #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsnote != null" >
clearWaterReserviorsNote = #{clearwaterreserviorsnote,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineequipment != null" >
betweenChlorineEquipment = #{betweenchlorineequipment,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinepipe != null" >
betweenChlorinePipe = #{betweenchlorinepipe,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinedosingpump != null" >
betweenChlorineDosingPump = #{betweenchlorinedosingpump,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinetraffic != null" >
betweenChlorineTraffic = #{betweenchlorinetraffic,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinefan != null" >
betweenChlorineFan = #{betweenchlorinefan,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinesanitation != null" >
betweenChlorineSanitation = #{betweenchlorinesanitation,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineresponsibleperson != null" >
betweenChlorineResponsiblePerson = #{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinenote != null" >
betweenChlorineNote = #{betweenchlorinenote,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwelllids != null" >
groundEnvironmentWellLIDS = #{groundenvironmentwelllids,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentdrainagen != null" >
groundEnvironmentDrainagen = #{groundenvironmentdrainagen,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwatersupply != null" >
groundEnvironmentWaterSupply = #{groundenvironmentwatersupply,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentcable != null" >
groundEnvironmentCable = #{groundenvironmentcable,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentroad != null" >
groundEnvironmentRoad = #{groundenvironmentroad,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentresponsibleperson != null" >
groundEnvironmentResponsiblePerson = #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentnote != null" >
groundEnvironmentNote = #{groundenvironmentnote,jdbcType=VARCHAR},
</if>
<if test="groundsecurityillegal != null" >
groundSecurityIllegal = #{groundsecurityillegal,jdbcType=VARCHAR},
</if>
<if test="groundsecurityfire != null" >
groundSecurityFire = #{groundsecurityfire,jdbcType=VARCHAR},
</if>
<if test="groundsecurityrats != null" >
groundSecurityRats = #{groundsecurityrats,jdbcType=VARCHAR},
</if>
<if test="groundsecuritysuspiciouspersonnel != null" >
groundSecuritySuspiciousPersonnel = #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
</if>
<if test="groundsecurityresponsibleperson != null" >
groundSecurityResponsiblePerson = #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundsecuritynote != null" >
groundSecurityNote = #{groundsecuritynote,jdbcType=VARCHAR},
</if>
<if test="securitytoolemergency != null" >
securityToolEmergency = #{securitytoolemergency,jdbcType=VARCHAR},
</if>
<if test="securitytoolfloodcontroland != null" >
securityToolFloodControlAnd = #{securitytoolfloodcontroland,jdbcType=VARCHAR},
</if>
<if test="securitytoolprotective != null" >
securityToolProtective = #{securitytoolprotective,jdbcType=VARCHAR},
</if>
<if test="securitytoolmainteance != null" >
securityToolMainteance = #{securitytoolmainteance,jdbcType=VARCHAR},
</if>
<if test="securitytoolresponsibleperson != null" >
securityToolResponsiblePerson = #{securitytoolresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="securitytoolnote != null" >
securityToolNote = #{securitytoolnote,jdbcType=VARCHAR},
</if>
<if test="userid != null" >
userId = #{userid,jdbcType=INTEGER},
</if>
<if test="creattime != null" >
creatTime = #{creattime,jdbcType=TIMESTAMP},
</if>
<if test="reamke1 != null" >
reamke1 = #{reamke1,jdbcType=VARCHAR},
</if>
<if test="reamke2 != null" >
reamke2 = #{reamke2,jdbcType=VARCHAR},
</if>
<if test="reamke3 != null" >
reamke3 = #{reamke3,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
update water_stations_patrol
set checkProjectControlRommWaterSupplySystem = #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
checkProjectControlRommSecuritySystem = #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
checkProjectControlRommRunningRecord = #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
checkProjectControlRommDocumentHolder = #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
checkProjectControlRommGround = #{checkprojectcontrolrommground,jdbcType=VARCHAR},
checkProjectControlRommResponsiblePerson = #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
checkProjectControlRommnote = #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
checkProjectFrequencyConversionShow = #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
checkProjectFrequencyConversionClose = #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
checkProjectFrequencyConversionSanitation = #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
checkProjectFrequencyConversionResponsiblePerson = #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
checkProjectFrequencyConversionNote = #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentPowerSupply = #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentShow = #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentAppearance = #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentRange = #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentDetection = #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson = #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentNote = #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterPowerSupply = #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterShow = #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterAppearance = #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterResponsiblePerson = #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterNote = #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
residualChlorineInstrumentPipeline = #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
residualChlorineInstrumentPowerSupply = #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
residualChlorineInstrumentShow = #{residualchlorineinstrumentshow,jdbcType=VARCHAR},
residualChlorineInstrumentAppearance = #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
residualChlorineInstrumentPipelinMakeWater = #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
residualChlorineInstrumentEquipment = #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
residualChlorineInstrumentGroundSanitation = #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
residualChlorineInstrumentResponsiblePerson = #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
residualChlorineInstrumentNote = #{residualchlorineinstrumentnote,jdbcType=VARCHAR},
boosterPumpRoomWaterPump = #{boosterpumproomwaterpump,jdbcType=VARCHAR},
boosterPumpRoomBearing = #{boosterpumproombearing,jdbcType=VARCHAR},
boosterPumpRoomTheValue = #{boosterpumproomthevalue,jdbcType=VARCHAR},
boosterPumpRoomPumpBody = #{boosterpumproompumpbody,jdbcType=VARCHAR},
boosterPumpRoomNamePlate = #{boosterpumproomnameplate,jdbcType=VARCHAR},
boosterPumpRoomPacking = #{boosterpumproompacking,jdbcType=VARCHAR},
boosterPumpRoomShow = #{boosterpumproomshow,jdbcType=VARCHAR},
boosterPumpRoomFan = #{boosterpumproomfan,jdbcType=VARCHAR},
boosterPumpRoomDrainage = #{boosterpumproomdrainage,jdbcType=VARCHAR},
boosterPumpRoomSanitation = #{boosterpumproomsanitation,jdbcType=VARCHAR},
boosterPumpRoomResponsiblePerson = #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
boosterPumpRoomNote = #{boosterpumproomnote,jdbcType=VARCHAR},
clearWaterReserviorsStairs = #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
clearWaterReserviorsVent = #{clearwaterreserviorsvent,jdbcType=VARCHAR},
clearWaterReserviorsPoolRoof = #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
clearWaterReserviorsSanitation = #{clearwaterreserviorssanitation,jdbcType=VARCHAR},
clearWaterReserviorsPumpBody = #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
clearWaterReserviorsResponsiblePerson = #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
clearWaterReserviorsNote = #{clearwaterreserviorsnote,jdbcType=VARCHAR},
betweenChlorineEquipment = #{betweenchlorineequipment,jdbcType=VARCHAR},
betweenChlorinePipe = #{betweenchlorinepipe,jdbcType=VARCHAR},
betweenChlorineDosingPump = #{betweenchlorinedosingpump,jdbcType=VARCHAR},
betweenChlorineTraffic = #{betweenchlorinetraffic,jdbcType=VARCHAR},
betweenChlorineFan = #{betweenchlorinefan,jdbcType=VARCHAR},
betweenChlorineSanitation = #{betweenchlorinesanitation,jdbcType=VARCHAR},
betweenChlorineResponsiblePerson = #{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
betweenChlorineNote = #{betweenchlorinenote,jdbcType=VARCHAR},
groundEnvironmentWellLIDS = #{groundenvironmentwelllids,jdbcType=VARCHAR},
groundEnvironmentDrainagen = #{groundenvironmentdrainagen,jdbcType=VARCHAR},
groundEnvironmentWaterSupply = #{groundenvironmentwatersupply,jdbcType=VARCHAR},
groundEnvironmentCable = #{groundenvironmentcable,jdbcType=VARCHAR},
groundEnvironmentRoad = #{groundenvironmentroad,jdbcType=VARCHAR},
groundEnvironmentResponsiblePerson = #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
groundEnvironmentNote = #{groundenvironmentnote,jdbcType=VARCHAR},
groundSecurityIllegal = #{groundsecurityillegal,jdbcType=VARCHAR},
groundSecurityFire = #{groundsecurityfire,jdbcType=VARCHAR},
groundSecurityRats = #{groundsecurityrats,jdbcType=VARCHAR},
groundSecuritySuspiciousPersonnel = #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
groundSecurityResponsiblePerson = #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
groundSecurityNote = #{groundsecuritynote,jdbcType=VARCHAR},
securityToolEmergency = #{securitytoolemergency,jdbcType=VARCHAR},
securityToolFloodControlAnd = #{securitytoolfloodcontroland,jdbcType=VARCHAR},
securityToolProtective = #{securitytoolprotective,jdbcType=VARCHAR},
securityToolMainteance = #{securitytoolmainteance,jdbcType=VARCHAR},
securityToolResponsiblePerson = #{securitytoolresponsibleperson,jdbcType=VARCHAR},
securityToolNote = #{securitytoolnote,jdbcType=VARCHAR},
userId = #{userid,jdbcType=INTEGER},
creatTime = #{creattime,jdbcType=TIMESTAMP},
reamke1 = #{reamke1,jdbcType=VARCHAR},
reamke2 = #{reamke2,jdbcType=VARCHAR},
reamke3 = #{reamke3,jdbcType=VARCHAR}
where id = #{id,jdbcType=VARCHAR}
</update>
</mapper>
\ No newline at end of file
... ...