作者 shenhailong

二水厂

  1 +package com.tianbo.warehouse.controller.water;
  2 +
  3 +import com.github.pagehelper.PageInfo;
  4 +import com.tianbo.warehouse.annotation.LogAnnotation;
  5 +import com.tianbo.warehouse.controller.response.ResultJson;
  6 +import com.tianbo.warehouse.model.Company;
  7 +import com.tianbo.warehouse.model.WaterStationsPatrol;
  8 +import com.tianbo.warehouse.service.CompanyService;
  9 +import com.tianbo.warehouse.service.water.WaterStationsPatrolService;
  10 +import org.springframework.beans.factory.annotation.Autowired;
  11 +import org.springframework.web.bind.annotation.*;
  12 +
  13 +import javax.servlet.http.HttpServletRequest;
  14 +import javax.servlet.http.HttpServletResponse;
  15 +import javax.validation.Valid;
  16 +
  17 +@RestController
  18 +@RequestMapping("/water_stations_patrol")
  19 +public class WaterStationsPatrolController {
  20 +
  21 + @Autowired
  22 + WaterStationsPatrolService waterStationsPatrolService;
  23 +
  24 + @GetMapping("/list")
  25 + public PageInfo<WaterStationsPatrol> list(@RequestParam(value = "pageNum",required = false,defaultValue = "1")
  26 + int pageNum,
  27 + @RequestParam(value = "pageSize",required = false,defaultValue = "5")
  28 + int pageSize){
  29 + return waterStationsPatrolService.findAll(pageNum,pageSize);
  30 +
  31 + }
  32 +
  33 + @LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理添加")
  34 + @PostMapping("/add")
  35 + public ResultJson add(@RequestBody WaterStationsPatrol waterStationsPatrol){
  36 +
  37 + int i =waterStationsPatrolService.insertSelective(waterStationsPatrol);
  38 +
  39 + ResultJson resultJson = new ResultJson();
  40 + if (1==i){
  41 + resultJson = new ResultJson("200","添加成功");
  42 + }else {
  43 + resultJson = new ResultJson("500","insert faild");
  44 + }
  45 + return resultJson;
  46 + }
  47 +
  48 + @LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理修改")
  49 + @PutMapping("/edit")
  50 + @ResponseBody
  51 + public ResultJson edit(@RequestBody @Valid WaterStationsPatrol waterStationsPatrol){
  52 +
  53 + int i =waterStationsPatrolService.updateByPrimaryKeySelective(waterStationsPatrol);
  54 +
  55 + ResultJson resultJson = new ResultJson();
  56 + if (1==i){
  57 + resultJson = new ResultJson("200","修改成功");
  58 + }else {
  59 + resultJson = new ResultJson("500","insert faild");
  60 + }
  61 + return resultJson;
  62 + }
  63 +
  64 + @LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理删除")
  65 + @DeleteMapping("/del")
  66 + public ResultJson reomve(@RequestBody WaterStationsPatrol waterStationsPatrol, HttpServletRequest request, HttpServletResponse response){
  67 +
  68 + int i =waterStationsPatrolService.deleteByPrimaryKey(waterStationsPatrol.getId());
  69 +
  70 + ResultJson resultJson = new ResultJson();
  71 + if (1==i){
  72 + resultJson = new ResultJson("200","删除成功");
  73 + }else {
  74 + resultJson = new ResultJson("500","insert faild");
  75 + }
  76 + return resultJson;
  77 + }
  78 +
  79 + @LogAnnotation(moduleName = "二水厂-水站巡视记录单管理",operate = "二水厂-水站巡视记录单管理批量删除")
  80 + @GetMapping("/batchremove")
  81 + public ResultJson reomve(String ids, HttpServletRequest request, HttpServletResponse response){
  82 +
  83 + ResultJson resultJson = new ResultJson();
  84 +
  85 + if (waterStationsPatrolService.deleteByPrimaryKey(ids)>0){
  86 + resultJson = new ResultJson("200","删除成功");
  87 + }else {
  88 + resultJson = new ResultJson("500","insert faild");
  89 + }
  90 + return resultJson;
  91 + }
  92 +
  93 +}
  1 +package com.tianbo.warehouse.dao;
  2 +
  3 +import com.tianbo.warehouse.model.WaterStationsPatrol;
  4 +
  5 +import java.util.List;
  6 +
  7 +public interface WaterStationsPatrolMapper {
  8 + int deleteByPrimaryKey(String id);
  9 +
  10 + int insert(WaterStationsPatrol record);
  11 +
  12 + int insertSelective(WaterStationsPatrol record);
  13 +
  14 + WaterStationsPatrol selectByPrimaryKey(String id);
  15 +
  16 + int updateByPrimaryKeySelective(WaterStationsPatrol record);
  17 +
  18 + int updateByPrimaryKey(WaterStationsPatrol record);
  19 +
  20 + List<WaterStationsPatrol> findAll();
  21 +}
  1 +package com.tianbo.warehouse.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class WaterStationsPatrol {
  6 + private String id;
  7 +
  8 + private String checkprojectcontrolrommwatersupplysystem;
  9 +
  10 + private String checkprojectcontrolrommsecuritysystem;
  11 +
  12 + private String checkprojectcontrolrommrunningrecord;
  13 +
  14 + private String checkprojectcontrolrommdocumentholder;
  15 +
  16 + private String checkprojectcontrolrommground;
  17 +
  18 + private String checkprojectcontrolrommresponsibleperson;
  19 +
  20 + private String checkprojectcontrolrommnote;
  21 +
  22 + private String checkprojectfrequencyconversionshow;
  23 +
  24 + private String checkprojectfrequencyconversionclose;
  25 +
  26 + private String checkprojectfrequencyconversionsanitation;
  27 +
  28 + private String checkprojectfrequencyconversionresponsibleperson;
  29 +
  30 + private String checkprojectfrequencyconversionnote;
  31 +
  32 + private String checkprojectmeterbetweenturbidityinstrumentpowersupply;
  33 +
  34 + private String checkprojectmeterbetweenturbidityinstrumentshow;
  35 +
  36 + private String checkprojectmeterbetweenturbidityinstrumentappearance;
  37 +
  38 + private String checkprojectmeterbetweenturbidityinstrumentrange;
  39 +
  40 + private String checkprojectmeterbetweenturbidityinstrumentdetection;
  41 +
  42 + private String checkprojectmeterbetweenturbidityinstrumentresponsibleperson;
  43 +
  44 + private String checkprojectmeterbetweenturbidityinstrumentnote;
  45 +
  46 + private String checkprojectmeterbetweenflowmeterpowersupply;
  47 +
  48 + private String checkprojectmeterbetweenflowmetershow;
  49 +
  50 + private String checkprojectmeterbetweenflowmeterappearance;
  51 +
  52 + private String checkprojectmeterbetweenflowmeterresponsibleperson;
  53 +
  54 + private String checkprojectmeterbetweenflowmeternote;
  55 +
  56 + private String residualchlorineinstrumentpipeline;
  57 +
  58 + private String residualchlorineinstrumentpowersupply;
  59 +
  60 + private String residualchlorineinstrumentshow;
  61 +
  62 + private String residualchlorineinstrumentappearance;
  63 +
  64 + private String residualchlorineinstrumentpipelinmakewater;
  65 +
  66 + private String residualchlorineinstrumentequipment;
  67 +
  68 + private String residualchlorineinstrumentgroundsanitation;
  69 +
  70 + private String residualchlorineinstrumentresponsibleperson;
  71 +
  72 + private String residualchlorineinstrumentnote;
  73 +
  74 + private String boosterpumproomwaterpump;
  75 +
  76 + private String boosterpumproombearing;
  77 +
  78 + private String boosterpumproomthevalue;
  79 +
  80 + private String boosterpumproompumpbody;
  81 +
  82 + private String boosterpumproomnameplate;
  83 +
  84 + private String boosterpumproompacking;
  85 +
  86 + private String boosterpumproomshow;
  87 +
  88 + private String boosterpumproomfan;
  89 +
  90 + private String boosterpumproomdrainage;
  91 +
  92 + private String boosterpumproomsanitation;
  93 +
  94 + private String boosterpumproomresponsibleperson;
  95 +
  96 + private String boosterpumproomnote;
  97 +
  98 + private String clearwaterreserviorsstairs;
  99 +
  100 + private String clearwaterreserviorsvent;
  101 +
  102 + private String clearwaterreserviorspoolroof;
  103 +
  104 + private String clearwaterreserviorssanitation;
  105 +
  106 + private String clearwaterreserviorspumpbody;
  107 +
  108 + private String clearwaterreserviorsresponsibleperson;
  109 +
  110 + private String clearwaterreserviorsnote;
  111 +
  112 + private String betweenchlorineequipment;
  113 +
  114 + private String betweenchlorinepipe;
  115 +
  116 + private String betweenchlorinedosingpump;
  117 +
  118 + private String betweenchlorinetraffic;
  119 +
  120 + private String betweenchlorinefan;
  121 +
  122 + private String betweenchlorinesanitation;
  123 +
  124 + private String betweenchlorineresponsibleperson;
  125 +
  126 + private String betweenchlorinenote;
  127 +
  128 + private String groundenvironmentwelllids;
  129 +
  130 + private String groundenvironmentdrainagen;
  131 +
  132 + private String groundenvironmentwatersupply;
  133 +
  134 + private String groundenvironmentcable;
  135 +
  136 + private String groundenvironmentroad;
  137 +
  138 + private String groundenvironmentresponsibleperson;
  139 +
  140 + private String groundenvironmentnote;
  141 +
  142 + private String groundsecurityillegal;
  143 +
  144 + private String groundsecurityfire;
  145 +
  146 + private String groundsecurityrats;
  147 +
  148 + private String groundsecuritysuspiciouspersonnel;
  149 +
  150 + private String groundsecurityresponsibleperson;
  151 +
  152 + private String groundsecuritynote;
  153 +
  154 + private String securitytoolemergency;
  155 +
  156 + private String securitytoolfloodcontroland;
  157 +
  158 + private String securitytoolprotective;
  159 +
  160 + private String securitytoolmainteance;
  161 +
  162 + private String securitytoolresponsibleperson;
  163 +
  164 + private String securitytoolnote;
  165 +
  166 + private Integer userid;
  167 +
  168 + private Date creattime;
  169 +
  170 + private String reamke1;
  171 +
  172 + private String reamke2;
  173 +
  174 + private String reamke3;
  175 +
  176 + public String getId() {
  177 + return id;
  178 + }
  179 +
  180 + public void setId(String id) {
  181 + this.id = id == null ? null : id.trim();
  182 + }
  183 +
  184 + public String getCheckprojectcontrolrommwatersupplysystem() {
  185 + return checkprojectcontrolrommwatersupplysystem;
  186 + }
  187 +
  188 + public void setCheckprojectcontrolrommwatersupplysystem(String checkprojectcontrolrommwatersupplysystem) {
  189 + this.checkprojectcontrolrommwatersupplysystem = checkprojectcontrolrommwatersupplysystem == null ? null : checkprojectcontrolrommwatersupplysystem.trim();
  190 + }
  191 +
  192 + public String getCheckprojectcontrolrommsecuritysystem() {
  193 + return checkprojectcontrolrommsecuritysystem;
  194 + }
  195 +
  196 + public void setCheckprojectcontrolrommsecuritysystem(String checkprojectcontrolrommsecuritysystem) {
  197 + this.checkprojectcontrolrommsecuritysystem = checkprojectcontrolrommsecuritysystem == null ? null : checkprojectcontrolrommsecuritysystem.trim();
  198 + }
  199 +
  200 + public String getCheckprojectcontrolrommrunningrecord() {
  201 + return checkprojectcontrolrommrunningrecord;
  202 + }
  203 +
  204 + public void setCheckprojectcontrolrommrunningrecord(String checkprojectcontrolrommrunningrecord) {
  205 + this.checkprojectcontrolrommrunningrecord = checkprojectcontrolrommrunningrecord == null ? null : checkprojectcontrolrommrunningrecord.trim();
  206 + }
  207 +
  208 + public String getCheckprojectcontrolrommdocumentholder() {
  209 + return checkprojectcontrolrommdocumentholder;
  210 + }
  211 +
  212 + public void setCheckprojectcontrolrommdocumentholder(String checkprojectcontrolrommdocumentholder) {
  213 + this.checkprojectcontrolrommdocumentholder = checkprojectcontrolrommdocumentholder == null ? null : checkprojectcontrolrommdocumentholder.trim();
  214 + }
  215 +
  216 + public String getCheckprojectcontrolrommground() {
  217 + return checkprojectcontrolrommground;
  218 + }
  219 +
  220 + public void setCheckprojectcontrolrommground(String checkprojectcontrolrommground) {
  221 + this.checkprojectcontrolrommground = checkprojectcontrolrommground == null ? null : checkprojectcontrolrommground.trim();
  222 + }
  223 +
  224 + public String getCheckprojectcontrolrommresponsibleperson() {
  225 + return checkprojectcontrolrommresponsibleperson;
  226 + }
  227 +
  228 + public void setCheckprojectcontrolrommresponsibleperson(String checkprojectcontrolrommresponsibleperson) {
  229 + this.checkprojectcontrolrommresponsibleperson = checkprojectcontrolrommresponsibleperson == null ? null : checkprojectcontrolrommresponsibleperson.trim();
  230 + }
  231 +
  232 + public String getCheckprojectcontrolrommnote() {
  233 + return checkprojectcontrolrommnote;
  234 + }
  235 +
  236 + public void setCheckprojectcontrolrommnote(String checkprojectcontrolrommnote) {
  237 + this.checkprojectcontrolrommnote = checkprojectcontrolrommnote == null ? null : checkprojectcontrolrommnote.trim();
  238 + }
  239 +
  240 + public String getCheckprojectfrequencyconversionshow() {
  241 + return checkprojectfrequencyconversionshow;
  242 + }
  243 +
  244 + public void setCheckprojectfrequencyconversionshow(String checkprojectfrequencyconversionshow) {
  245 + this.checkprojectfrequencyconversionshow = checkprojectfrequencyconversionshow == null ? null : checkprojectfrequencyconversionshow.trim();
  246 + }
  247 +
  248 + public String getCheckprojectfrequencyconversionclose() {
  249 + return checkprojectfrequencyconversionclose;
  250 + }
  251 +
  252 + public void setCheckprojectfrequencyconversionclose(String checkprojectfrequencyconversionclose) {
  253 + this.checkprojectfrequencyconversionclose = checkprojectfrequencyconversionclose == null ? null : checkprojectfrequencyconversionclose.trim();
  254 + }
  255 +
  256 + public String getCheckprojectfrequencyconversionsanitation() {
  257 + return checkprojectfrequencyconversionsanitation;
  258 + }
  259 +
  260 + public void setCheckprojectfrequencyconversionsanitation(String checkprojectfrequencyconversionsanitation) {
  261 + this.checkprojectfrequencyconversionsanitation = checkprojectfrequencyconversionsanitation == null ? null : checkprojectfrequencyconversionsanitation.trim();
  262 + }
  263 +
  264 + public String getCheckprojectfrequencyconversionresponsibleperson() {
  265 + return checkprojectfrequencyconversionresponsibleperson;
  266 + }
  267 +
  268 + public void setCheckprojectfrequencyconversionresponsibleperson(String checkprojectfrequencyconversionresponsibleperson) {
  269 + this.checkprojectfrequencyconversionresponsibleperson = checkprojectfrequencyconversionresponsibleperson == null ? null : checkprojectfrequencyconversionresponsibleperson.trim();
  270 + }
  271 +
  272 + public String getCheckprojectfrequencyconversionnote() {
  273 + return checkprojectfrequencyconversionnote;
  274 + }
  275 +
  276 + public void setCheckprojectfrequencyconversionnote(String checkprojectfrequencyconversionnote) {
  277 + this.checkprojectfrequencyconversionnote = checkprojectfrequencyconversionnote == null ? null : checkprojectfrequencyconversionnote.trim();
  278 + }
  279 +
  280 + public String getCheckprojectmeterbetweenturbidityinstrumentpowersupply() {
  281 + return checkprojectmeterbetweenturbidityinstrumentpowersupply;
  282 + }
  283 +
  284 + public void setCheckprojectmeterbetweenturbidityinstrumentpowersupply(String checkprojectmeterbetweenturbidityinstrumentpowersupply) {
  285 + this.checkprojectmeterbetweenturbidityinstrumentpowersupply = checkprojectmeterbetweenturbidityinstrumentpowersupply == null ? null : checkprojectmeterbetweenturbidityinstrumentpowersupply.trim();
  286 + }
  287 +
  288 + public String getCheckprojectmeterbetweenturbidityinstrumentshow() {
  289 + return checkprojectmeterbetweenturbidityinstrumentshow;
  290 + }
  291 +
  292 + public void setCheckprojectmeterbetweenturbidityinstrumentshow(String checkprojectmeterbetweenturbidityinstrumentshow) {
  293 + this.checkprojectmeterbetweenturbidityinstrumentshow = checkprojectmeterbetweenturbidityinstrumentshow == null ? null : checkprojectmeterbetweenturbidityinstrumentshow.trim();
  294 + }
  295 +
  296 + public String getCheckprojectmeterbetweenturbidityinstrumentappearance() {
  297 + return checkprojectmeterbetweenturbidityinstrumentappearance;
  298 + }
  299 +
  300 + public void setCheckprojectmeterbetweenturbidityinstrumentappearance(String checkprojectmeterbetweenturbidityinstrumentappearance) {
  301 + this.checkprojectmeterbetweenturbidityinstrumentappearance = checkprojectmeterbetweenturbidityinstrumentappearance == null ? null : checkprojectmeterbetweenturbidityinstrumentappearance.trim();
  302 + }
  303 +
  304 + public String getCheckprojectmeterbetweenturbidityinstrumentrange() {
  305 + return checkprojectmeterbetweenturbidityinstrumentrange;
  306 + }
  307 +
  308 + public void setCheckprojectmeterbetweenturbidityinstrumentrange(String checkprojectmeterbetweenturbidityinstrumentrange) {
  309 + this.checkprojectmeterbetweenturbidityinstrumentrange = checkprojectmeterbetweenturbidityinstrumentrange == null ? null : checkprojectmeterbetweenturbidityinstrumentrange.trim();
  310 + }
  311 +
  312 + public String getCheckprojectmeterbetweenturbidityinstrumentdetection() {
  313 + return checkprojectmeterbetweenturbidityinstrumentdetection;
  314 + }
  315 +
  316 + public void setCheckprojectmeterbetweenturbidityinstrumentdetection(String checkprojectmeterbetweenturbidityinstrumentdetection) {
  317 + this.checkprojectmeterbetweenturbidityinstrumentdetection = checkprojectmeterbetweenturbidityinstrumentdetection == null ? null : checkprojectmeterbetweenturbidityinstrumentdetection.trim();
  318 + }
  319 +
  320 + public String getCheckprojectmeterbetweenturbidityinstrumentresponsibleperson() {
  321 + return checkprojectmeterbetweenturbidityinstrumentresponsibleperson;
  322 + }
  323 +
  324 + public void setCheckprojectmeterbetweenturbidityinstrumentresponsibleperson(String checkprojectmeterbetweenturbidityinstrumentresponsibleperson) {
  325 + this.checkprojectmeterbetweenturbidityinstrumentresponsibleperson = checkprojectmeterbetweenturbidityinstrumentresponsibleperson == null ? null : checkprojectmeterbetweenturbidityinstrumentresponsibleperson.trim();
  326 + }
  327 +
  328 + public String getCheckprojectmeterbetweenturbidityinstrumentnote() {
  329 + return checkprojectmeterbetweenturbidityinstrumentnote;
  330 + }
  331 +
  332 + public void setCheckprojectmeterbetweenturbidityinstrumentnote(String checkprojectmeterbetweenturbidityinstrumentnote) {
  333 + this.checkprojectmeterbetweenturbidityinstrumentnote = checkprojectmeterbetweenturbidityinstrumentnote == null ? null : checkprojectmeterbetweenturbidityinstrumentnote.trim();
  334 + }
  335 +
  336 + public String getCheckprojectmeterbetweenflowmeterpowersupply() {
  337 + return checkprojectmeterbetweenflowmeterpowersupply;
  338 + }
  339 +
  340 + public void setCheckprojectmeterbetweenflowmeterpowersupply(String checkprojectmeterbetweenflowmeterpowersupply) {
  341 + this.checkprojectmeterbetweenflowmeterpowersupply = checkprojectmeterbetweenflowmeterpowersupply == null ? null : checkprojectmeterbetweenflowmeterpowersupply.trim();
  342 + }
  343 +
  344 + public String getCheckprojectmeterbetweenflowmetershow() {
  345 + return checkprojectmeterbetweenflowmetershow;
  346 + }
  347 +
  348 + public void setCheckprojectmeterbetweenflowmetershow(String checkprojectmeterbetweenflowmetershow) {
  349 + this.checkprojectmeterbetweenflowmetershow = checkprojectmeterbetweenflowmetershow == null ? null : checkprojectmeterbetweenflowmetershow.trim();
  350 + }
  351 +
  352 + public String getCheckprojectmeterbetweenflowmeterappearance() {
  353 + return checkprojectmeterbetweenflowmeterappearance;
  354 + }
  355 +
  356 + public void setCheckprojectmeterbetweenflowmeterappearance(String checkprojectmeterbetweenflowmeterappearance) {
  357 + this.checkprojectmeterbetweenflowmeterappearance = checkprojectmeterbetweenflowmeterappearance == null ? null : checkprojectmeterbetweenflowmeterappearance.trim();
  358 + }
  359 +
  360 + public String getCheckprojectmeterbetweenflowmeterresponsibleperson() {
  361 + return checkprojectmeterbetweenflowmeterresponsibleperson;
  362 + }
  363 +
  364 + public void setCheckprojectmeterbetweenflowmeterresponsibleperson(String checkprojectmeterbetweenflowmeterresponsibleperson) {
  365 + this.checkprojectmeterbetweenflowmeterresponsibleperson = checkprojectmeterbetweenflowmeterresponsibleperson == null ? null : checkprojectmeterbetweenflowmeterresponsibleperson.trim();
  366 + }
  367 +
  368 + public String getCheckprojectmeterbetweenflowmeternote() {
  369 + return checkprojectmeterbetweenflowmeternote;
  370 + }
  371 +
  372 + public void setCheckprojectmeterbetweenflowmeternote(String checkprojectmeterbetweenflowmeternote) {
  373 + this.checkprojectmeterbetweenflowmeternote = checkprojectmeterbetweenflowmeternote == null ? null : checkprojectmeterbetweenflowmeternote.trim();
  374 + }
  375 +
  376 + public String getResidualchlorineinstrumentpipeline() {
  377 + return residualchlorineinstrumentpipeline;
  378 + }
  379 +
  380 + public void setResidualchlorineinstrumentpipeline(String residualchlorineinstrumentpipeline) {
  381 + this.residualchlorineinstrumentpipeline = residualchlorineinstrumentpipeline == null ? null : residualchlorineinstrumentpipeline.trim();
  382 + }
  383 +
  384 + public String getResidualchlorineinstrumentpowersupply() {
  385 + return residualchlorineinstrumentpowersupply;
  386 + }
  387 +
  388 + public void setResidualchlorineinstrumentpowersupply(String residualchlorineinstrumentpowersupply) {
  389 + this.residualchlorineinstrumentpowersupply = residualchlorineinstrumentpowersupply == null ? null : residualchlorineinstrumentpowersupply.trim();
  390 + }
  391 +
  392 + public String getResidualchlorineinstrumentshow() {
  393 + return residualchlorineinstrumentshow;
  394 + }
  395 +
  396 + public void setResidualchlorineinstrumentshow(String residualchlorineinstrumentshow) {
  397 + this.residualchlorineinstrumentshow = residualchlorineinstrumentshow == null ? null : residualchlorineinstrumentshow.trim();
  398 + }
  399 +
  400 + public String getResidualchlorineinstrumentappearance() {
  401 + return residualchlorineinstrumentappearance;
  402 + }
  403 +
  404 + public void setResidualchlorineinstrumentappearance(String residualchlorineinstrumentappearance) {
  405 + this.residualchlorineinstrumentappearance = residualchlorineinstrumentappearance == null ? null : residualchlorineinstrumentappearance.trim();
  406 + }
  407 +
  408 + public String getResidualchlorineinstrumentpipelinmakewater() {
  409 + return residualchlorineinstrumentpipelinmakewater;
  410 + }
  411 +
  412 + public void setResidualchlorineinstrumentpipelinmakewater(String residualchlorineinstrumentpipelinmakewater) {
  413 + this.residualchlorineinstrumentpipelinmakewater = residualchlorineinstrumentpipelinmakewater == null ? null : residualchlorineinstrumentpipelinmakewater.trim();
  414 + }
  415 +
  416 + public String getResidualchlorineinstrumentequipment() {
  417 + return residualchlorineinstrumentequipment;
  418 + }
  419 +
  420 + public void setResidualchlorineinstrumentequipment(String residualchlorineinstrumentequipment) {
  421 + this.residualchlorineinstrumentequipment = residualchlorineinstrumentequipment == null ? null : residualchlorineinstrumentequipment.trim();
  422 + }
  423 +
  424 + public String getResidualchlorineinstrumentgroundsanitation() {
  425 + return residualchlorineinstrumentgroundsanitation;
  426 + }
  427 +
  428 + public void setResidualchlorineinstrumentgroundsanitation(String residualchlorineinstrumentgroundsanitation) {
  429 + this.residualchlorineinstrumentgroundsanitation = residualchlorineinstrumentgroundsanitation == null ? null : residualchlorineinstrumentgroundsanitation.trim();
  430 + }
  431 +
  432 + public String getResidualchlorineinstrumentresponsibleperson() {
  433 + return residualchlorineinstrumentresponsibleperson;
  434 + }
  435 +
  436 + public void setResidualchlorineinstrumentresponsibleperson(String residualchlorineinstrumentresponsibleperson) {
  437 + this.residualchlorineinstrumentresponsibleperson = residualchlorineinstrumentresponsibleperson == null ? null : residualchlorineinstrumentresponsibleperson.trim();
  438 + }
  439 +
  440 + public String getResidualchlorineinstrumentnote() {
  441 + return residualchlorineinstrumentnote;
  442 + }
  443 +
  444 + public void setResidualchlorineinstrumentnote(String residualchlorineinstrumentnote) {
  445 + this.residualchlorineinstrumentnote = residualchlorineinstrumentnote == null ? null : residualchlorineinstrumentnote.trim();
  446 + }
  447 +
  448 + public String getBoosterpumproomwaterpump() {
  449 + return boosterpumproomwaterpump;
  450 + }
  451 +
  452 + public void setBoosterpumproomwaterpump(String boosterpumproomwaterpump) {
  453 + this.boosterpumproomwaterpump = boosterpumproomwaterpump == null ? null : boosterpumproomwaterpump.trim();
  454 + }
  455 +
  456 + public String getBoosterpumproombearing() {
  457 + return boosterpumproombearing;
  458 + }
  459 +
  460 + public void setBoosterpumproombearing(String boosterpumproombearing) {
  461 + this.boosterpumproombearing = boosterpumproombearing == null ? null : boosterpumproombearing.trim();
  462 + }
  463 +
  464 + public String getBoosterpumproomthevalue() {
  465 + return boosterpumproomthevalue;
  466 + }
  467 +
  468 + public void setBoosterpumproomthevalue(String boosterpumproomthevalue) {
  469 + this.boosterpumproomthevalue = boosterpumproomthevalue == null ? null : boosterpumproomthevalue.trim();
  470 + }
  471 +
  472 + public String getBoosterpumproompumpbody() {
  473 + return boosterpumproompumpbody;
  474 + }
  475 +
  476 + public void setBoosterpumproompumpbody(String boosterpumproompumpbody) {
  477 + this.boosterpumproompumpbody = boosterpumproompumpbody == null ? null : boosterpumproompumpbody.trim();
  478 + }
  479 +
  480 + public String getBoosterpumproomnameplate() {
  481 + return boosterpumproomnameplate;
  482 + }
  483 +
  484 + public void setBoosterpumproomnameplate(String boosterpumproomnameplate) {
  485 + this.boosterpumproomnameplate = boosterpumproomnameplate == null ? null : boosterpumproomnameplate.trim();
  486 + }
  487 +
  488 + public String getBoosterpumproompacking() {
  489 + return boosterpumproompacking;
  490 + }
  491 +
  492 + public void setBoosterpumproompacking(String boosterpumproompacking) {
  493 + this.boosterpumproompacking = boosterpumproompacking == null ? null : boosterpumproompacking.trim();
  494 + }
  495 +
  496 + public String getBoosterpumproomshow() {
  497 + return boosterpumproomshow;
  498 + }
  499 +
  500 + public void setBoosterpumproomshow(String boosterpumproomshow) {
  501 + this.boosterpumproomshow = boosterpumproomshow == null ? null : boosterpumproomshow.trim();
  502 + }
  503 +
  504 + public String getBoosterpumproomfan() {
  505 + return boosterpumproomfan;
  506 + }
  507 +
  508 + public void setBoosterpumproomfan(String boosterpumproomfan) {
  509 + this.boosterpumproomfan = boosterpumproomfan == null ? null : boosterpumproomfan.trim();
  510 + }
  511 +
  512 + public String getBoosterpumproomdrainage() {
  513 + return boosterpumproomdrainage;
  514 + }
  515 +
  516 + public void setBoosterpumproomdrainage(String boosterpumproomdrainage) {
  517 + this.boosterpumproomdrainage = boosterpumproomdrainage == null ? null : boosterpumproomdrainage.trim();
  518 + }
  519 +
  520 + public String getBoosterpumproomsanitation() {
  521 + return boosterpumproomsanitation;
  522 + }
  523 +
  524 + public void setBoosterpumproomsanitation(String boosterpumproomsanitation) {
  525 + this.boosterpumproomsanitation = boosterpumproomsanitation == null ? null : boosterpumproomsanitation.trim();
  526 + }
  527 +
  528 + public String getBoosterpumproomresponsibleperson() {
  529 + return boosterpumproomresponsibleperson;
  530 + }
  531 +
  532 + public void setBoosterpumproomresponsibleperson(String boosterpumproomresponsibleperson) {
  533 + this.boosterpumproomresponsibleperson = boosterpumproomresponsibleperson == null ? null : boosterpumproomresponsibleperson.trim();
  534 + }
  535 +
  536 + public String getBoosterpumproomnote() {
  537 + return boosterpumproomnote;
  538 + }
  539 +
  540 + public void setBoosterpumproomnote(String boosterpumproomnote) {
  541 + this.boosterpumproomnote = boosterpumproomnote == null ? null : boosterpumproomnote.trim();
  542 + }
  543 +
  544 + public String getClearwaterreserviorsstairs() {
  545 + return clearwaterreserviorsstairs;
  546 + }
  547 +
  548 + public void setClearwaterreserviorsstairs(String clearwaterreserviorsstairs) {
  549 + this.clearwaterreserviorsstairs = clearwaterreserviorsstairs == null ? null : clearwaterreserviorsstairs.trim();
  550 + }
  551 +
  552 + public String getClearwaterreserviorsvent() {
  553 + return clearwaterreserviorsvent;
  554 + }
  555 +
  556 + public void setClearwaterreserviorsvent(String clearwaterreserviorsvent) {
  557 + this.clearwaterreserviorsvent = clearwaterreserviorsvent == null ? null : clearwaterreserviorsvent.trim();
  558 + }
  559 +
  560 + public String getClearwaterreserviorspoolroof() {
  561 + return clearwaterreserviorspoolroof;
  562 + }
  563 +
  564 + public void setClearwaterreserviorspoolroof(String clearwaterreserviorspoolroof) {
  565 + this.clearwaterreserviorspoolroof = clearwaterreserviorspoolroof == null ? null : clearwaterreserviorspoolroof.trim();
  566 + }
  567 +
  568 + public String getClearwaterreserviorssanitation() {
  569 + return clearwaterreserviorssanitation;
  570 + }
  571 +
  572 + public void setClearwaterreserviorssanitation(String clearwaterreserviorssanitation) {
  573 + this.clearwaterreserviorssanitation = clearwaterreserviorssanitation == null ? null : clearwaterreserviorssanitation.trim();
  574 + }
  575 +
  576 + public String getClearwaterreserviorspumpbody() {
  577 + return clearwaterreserviorspumpbody;
  578 + }
  579 +
  580 + public void setClearwaterreserviorspumpbody(String clearwaterreserviorspumpbody) {
  581 + this.clearwaterreserviorspumpbody = clearwaterreserviorspumpbody == null ? null : clearwaterreserviorspumpbody.trim();
  582 + }
  583 +
  584 + public String getClearwaterreserviorsresponsibleperson() {
  585 + return clearwaterreserviorsresponsibleperson;
  586 + }
  587 +
  588 + public void setClearwaterreserviorsresponsibleperson(String clearwaterreserviorsresponsibleperson) {
  589 + this.clearwaterreserviorsresponsibleperson = clearwaterreserviorsresponsibleperson == null ? null : clearwaterreserviorsresponsibleperson.trim();
  590 + }
  591 +
  592 + public String getClearwaterreserviorsnote() {
  593 + return clearwaterreserviorsnote;
  594 + }
  595 +
  596 + public void setClearwaterreserviorsnote(String clearwaterreserviorsnote) {
  597 + this.clearwaterreserviorsnote = clearwaterreserviorsnote == null ? null : clearwaterreserviorsnote.trim();
  598 + }
  599 +
  600 + public String getBetweenchlorineequipment() {
  601 + return betweenchlorineequipment;
  602 + }
  603 +
  604 + public void setBetweenchlorineequipment(String betweenchlorineequipment) {
  605 + this.betweenchlorineequipment = betweenchlorineequipment == null ? null : betweenchlorineequipment.trim();
  606 + }
  607 +
  608 + public String getBetweenchlorinepipe() {
  609 + return betweenchlorinepipe;
  610 + }
  611 +
  612 + public void setBetweenchlorinepipe(String betweenchlorinepipe) {
  613 + this.betweenchlorinepipe = betweenchlorinepipe == null ? null : betweenchlorinepipe.trim();
  614 + }
  615 +
  616 + public String getBetweenchlorinedosingpump() {
  617 + return betweenchlorinedosingpump;
  618 + }
  619 +
  620 + public void setBetweenchlorinedosingpump(String betweenchlorinedosingpump) {
  621 + this.betweenchlorinedosingpump = betweenchlorinedosingpump == null ? null : betweenchlorinedosingpump.trim();
  622 + }
  623 +
  624 + public String getBetweenchlorinetraffic() {
  625 + return betweenchlorinetraffic;
  626 + }
  627 +
  628 + public void setBetweenchlorinetraffic(String betweenchlorinetraffic) {
  629 + this.betweenchlorinetraffic = betweenchlorinetraffic == null ? null : betweenchlorinetraffic.trim();
  630 + }
  631 +
  632 + public String getBetweenchlorinefan() {
  633 + return betweenchlorinefan;
  634 + }
  635 +
  636 + public void setBetweenchlorinefan(String betweenchlorinefan) {
  637 + this.betweenchlorinefan = betweenchlorinefan == null ? null : betweenchlorinefan.trim();
  638 + }
  639 +
  640 + public String getBetweenchlorinesanitation() {
  641 + return betweenchlorinesanitation;
  642 + }
  643 +
  644 + public void setBetweenchlorinesanitation(String betweenchlorinesanitation) {
  645 + this.betweenchlorinesanitation = betweenchlorinesanitation == null ? null : betweenchlorinesanitation.trim();
  646 + }
  647 +
  648 + public String getBetweenchlorineresponsibleperson() {
  649 + return betweenchlorineresponsibleperson;
  650 + }
  651 +
  652 + public void setBetweenchlorineresponsibleperson(String betweenchlorineresponsibleperson) {
  653 + this.betweenchlorineresponsibleperson = betweenchlorineresponsibleperson == null ? null : betweenchlorineresponsibleperson.trim();
  654 + }
  655 +
  656 + public String getBetweenchlorinenote() {
  657 + return betweenchlorinenote;
  658 + }
  659 +
  660 + public void setBetweenchlorinenote(String betweenchlorinenote) {
  661 + this.betweenchlorinenote = betweenchlorinenote == null ? null : betweenchlorinenote.trim();
  662 + }
  663 +
  664 + public String getGroundenvironmentwelllids() {
  665 + return groundenvironmentwelllids;
  666 + }
  667 +
  668 + public void setGroundenvironmentwelllids(String groundenvironmentwelllids) {
  669 + this.groundenvironmentwelllids = groundenvironmentwelllids == null ? null : groundenvironmentwelllids.trim();
  670 + }
  671 +
  672 + public String getGroundenvironmentdrainagen() {
  673 + return groundenvironmentdrainagen;
  674 + }
  675 +
  676 + public void setGroundenvironmentdrainagen(String groundenvironmentdrainagen) {
  677 + this.groundenvironmentdrainagen = groundenvironmentdrainagen == null ? null : groundenvironmentdrainagen.trim();
  678 + }
  679 +
  680 + public String getGroundenvironmentwatersupply() {
  681 + return groundenvironmentwatersupply;
  682 + }
  683 +
  684 + public void setGroundenvironmentwatersupply(String groundenvironmentwatersupply) {
  685 + this.groundenvironmentwatersupply = groundenvironmentwatersupply == null ? null : groundenvironmentwatersupply.trim();
  686 + }
  687 +
  688 + public String getGroundenvironmentcable() {
  689 + return groundenvironmentcable;
  690 + }
  691 +
  692 + public void setGroundenvironmentcable(String groundenvironmentcable) {
  693 + this.groundenvironmentcable = groundenvironmentcable == null ? null : groundenvironmentcable.trim();
  694 + }
  695 +
  696 + public String getGroundenvironmentroad() {
  697 + return groundenvironmentroad;
  698 + }
  699 +
  700 + public void setGroundenvironmentroad(String groundenvironmentroad) {
  701 + this.groundenvironmentroad = groundenvironmentroad == null ? null : groundenvironmentroad.trim();
  702 + }
  703 +
  704 + public String getGroundenvironmentresponsibleperson() {
  705 + return groundenvironmentresponsibleperson;
  706 + }
  707 +
  708 + public void setGroundenvironmentresponsibleperson(String groundenvironmentresponsibleperson) {
  709 + this.groundenvironmentresponsibleperson = groundenvironmentresponsibleperson == null ? null : groundenvironmentresponsibleperson.trim();
  710 + }
  711 +
  712 + public String getGroundenvironmentnote() {
  713 + return groundenvironmentnote;
  714 + }
  715 +
  716 + public void setGroundenvironmentnote(String groundenvironmentnote) {
  717 + this.groundenvironmentnote = groundenvironmentnote == null ? null : groundenvironmentnote.trim();
  718 + }
  719 +
  720 + public String getGroundsecurityillegal() {
  721 + return groundsecurityillegal;
  722 + }
  723 +
  724 + public void setGroundsecurityillegal(String groundsecurityillegal) {
  725 + this.groundsecurityillegal = groundsecurityillegal == null ? null : groundsecurityillegal.trim();
  726 + }
  727 +
  728 + public String getGroundsecurityfire() {
  729 + return groundsecurityfire;
  730 + }
  731 +
  732 + public void setGroundsecurityfire(String groundsecurityfire) {
  733 + this.groundsecurityfire = groundsecurityfire == null ? null : groundsecurityfire.trim();
  734 + }
  735 +
  736 + public String getGroundsecurityrats() {
  737 + return groundsecurityrats;
  738 + }
  739 +
  740 + public void setGroundsecurityrats(String groundsecurityrats) {
  741 + this.groundsecurityrats = groundsecurityrats == null ? null : groundsecurityrats.trim();
  742 + }
  743 +
  744 + public String getGroundsecuritysuspiciouspersonnel() {
  745 + return groundsecuritysuspiciouspersonnel;
  746 + }
  747 +
  748 + public void setGroundsecuritysuspiciouspersonnel(String groundsecuritysuspiciouspersonnel) {
  749 + this.groundsecuritysuspiciouspersonnel = groundsecuritysuspiciouspersonnel == null ? null : groundsecuritysuspiciouspersonnel.trim();
  750 + }
  751 +
  752 + public String getGroundsecurityresponsibleperson() {
  753 + return groundsecurityresponsibleperson;
  754 + }
  755 +
  756 + public void setGroundsecurityresponsibleperson(String groundsecurityresponsibleperson) {
  757 + this.groundsecurityresponsibleperson = groundsecurityresponsibleperson == null ? null : groundsecurityresponsibleperson.trim();
  758 + }
  759 +
  760 + public String getGroundsecuritynote() {
  761 + return groundsecuritynote;
  762 + }
  763 +
  764 + public void setGroundsecuritynote(String groundsecuritynote) {
  765 + this.groundsecuritynote = groundsecuritynote == null ? null : groundsecuritynote.trim();
  766 + }
  767 +
  768 + public String getSecuritytoolemergency() {
  769 + return securitytoolemergency;
  770 + }
  771 +
  772 + public void setSecuritytoolemergency(String securitytoolemergency) {
  773 + this.securitytoolemergency = securitytoolemergency == null ? null : securitytoolemergency.trim();
  774 + }
  775 +
  776 + public String getSecuritytoolfloodcontroland() {
  777 + return securitytoolfloodcontroland;
  778 + }
  779 +
  780 + public void setSecuritytoolfloodcontroland(String securitytoolfloodcontroland) {
  781 + this.securitytoolfloodcontroland = securitytoolfloodcontroland == null ? null : securitytoolfloodcontroland.trim();
  782 + }
  783 +
  784 + public String getSecuritytoolprotective() {
  785 + return securitytoolprotective;
  786 + }
  787 +
  788 + public void setSecuritytoolprotective(String securitytoolprotective) {
  789 + this.securitytoolprotective = securitytoolprotective == null ? null : securitytoolprotective.trim();
  790 + }
  791 +
  792 + public String getSecuritytoolmainteance() {
  793 + return securitytoolmainteance;
  794 + }
  795 +
  796 + public void setSecuritytoolmainteance(String securitytoolmainteance) {
  797 + this.securitytoolmainteance = securitytoolmainteance == null ? null : securitytoolmainteance.trim();
  798 + }
  799 +
  800 + public String getSecuritytoolresponsibleperson() {
  801 + return securitytoolresponsibleperson;
  802 + }
  803 +
  804 + public void setSecuritytoolresponsibleperson(String securitytoolresponsibleperson) {
  805 + this.securitytoolresponsibleperson = securitytoolresponsibleperson == null ? null : securitytoolresponsibleperson.trim();
  806 + }
  807 +
  808 + public String getSecuritytoolnote() {
  809 + return securitytoolnote;
  810 + }
  811 +
  812 + public void setSecuritytoolnote(String securitytoolnote) {
  813 + this.securitytoolnote = securitytoolnote == null ? null : securitytoolnote.trim();
  814 + }
  815 +
  816 + public Integer getUserid() {
  817 + return userid;
  818 + }
  819 +
  820 + public void setUserid(Integer userid) {
  821 + this.userid = userid;
  822 + }
  823 +
  824 + public Date getCreattime() {
  825 + return creattime;
  826 + }
  827 +
  828 + public void setCreattime(Date creattime) {
  829 + this.creattime = creattime;
  830 + }
  831 +
  832 + public String getReamke1() {
  833 + return reamke1;
  834 + }
  835 +
  836 + public void setReamke1(String reamke1) {
  837 + this.reamke1 = reamke1 == null ? null : reamke1.trim();
  838 + }
  839 +
  840 + public String getReamke2() {
  841 + return reamke2;
  842 + }
  843 +
  844 + public void setReamke2(String reamke2) {
  845 + this.reamke2 = reamke2 == null ? null : reamke2.trim();
  846 + }
  847 +
  848 + public String getReamke3() {
  849 + return reamke3;
  850 + }
  851 +
  852 + public void setReamke3(String reamke3) {
  853 + this.reamke3 = reamke3 == null ? null : reamke3.trim();
  854 + }
  855 +}
  1 +package com.tianbo.warehouse.service.water;
  2 +
  3 +import com.github.pagehelper.PageInfo;
  4 +import com.tianbo.warehouse.model.StaffApartmentComeCar;
  5 +import com.tianbo.warehouse.model.WaterStationsPatrol;
  6 +
  7 +public interface WaterStationsPatrolService {
  8 +
  9 + PageInfo<WaterStationsPatrol> findAll(int pageNum, int pageSize);
  10 +
  11 + int insertSelective(WaterStationsPatrol staffApartmentComeCar);
  12 +
  13 + int updateByPrimaryKeySelective(WaterStationsPatrol staffApartmentComeCar);
  14 +
  15 + int deleteByPrimaryKey(String id);
  16 +
  17 +}
  1 +package com.tianbo.warehouse.service.water.imp;
  2 +
  3 +import com.github.pagehelper.Page;
  4 +import com.github.pagehelper.PageHelper;
  5 +import com.github.pagehelper.PageInfo;
  6 +import com.tianbo.warehouse.dao.StaffApartmentComeCarMapper;
  7 +import com.tianbo.warehouse.dao.WaterStationsPatrolMapper;
  8 +import com.tianbo.warehouse.model.StaffApartmentComeCar;
  9 +import com.tianbo.warehouse.model.WaterStationsPatrol;
  10 +import com.tianbo.warehouse.service.satff.ComeCarService;
  11 +import com.tianbo.warehouse.service.water.WaterStationsPatrolService;
  12 +import org.springframework.beans.factory.annotation.Autowired;
  13 +import org.springframework.stereotype.Service;
  14 +
  15 +import java.util.Date;
  16 +import java.util.List;
  17 +import java.util.UUID;
  18 +
  19 +@Service
  20 +public class WaterStationsPatrolServiceImp implements WaterStationsPatrolService {
  21 +
  22 + @Autowired
  23 + WaterStationsPatrolMapper waterStationsPatrolMapper;
  24 +
  25 + @Override
  26 + public PageInfo<WaterStationsPatrol> findAll(int pageNum, int pageSize) {
  27 + Page<WaterStationsPatrol> page = PageHelper.startPage(pageNum,pageSize);
  28 + List<WaterStationsPatrol> list = waterStationsPatrolMapper.findAll();
  29 +
  30 + PageInfo<WaterStationsPatrol> result = new PageInfo<>(list);
  31 + return result;
  32 + }
  33 +
  34 + @Override
  35 + public int insertSelective(WaterStationsPatrol staffApartmentComeCar) {
  36 + staffApartmentComeCar.setId(UUID.randomUUID().toString());
  37 + staffApartmentComeCar.setCreattime(new Date());
  38 + return waterStationsPatrolMapper.insertSelective(staffApartmentComeCar);
  39 + }
  40 +
  41 + @Override
  42 + public int updateByPrimaryKeySelective(WaterStationsPatrol staffApartmentComeCar) {
  43 + staffApartmentComeCar.setCreattime(new Date());
  44 + return waterStationsPatrolMapper.updateByPrimaryKeySelective(staffApartmentComeCar);
  45 + }
  46 +
  47 + @Override
  48 + public int deleteByPrimaryKey(String companyId) {
  49 + if (companyId.contains(",")){
  50 + try {
  51 + String[] split = companyId.split(",");
  52 + for (int i=0; i<split.length; i++){
  53 + waterStationsPatrolMapper.deleteByPrimaryKey(split[i]);
  54 + }
  55 + return 1;
  56 + }catch (Exception e){
  57 + e.printStackTrace();
  58 + return 0;
  59 + }
  60 + }else {
  61 +
  62 + return waterStationsPatrolMapper.deleteByPrimaryKey(companyId);
  63 + }
  64 + }
  65 +}
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.tianbo.warehouse.dao.WaterStationsPatrolMapper" >
  4 + <resultMap id="BaseResultMap" type="com.tianbo.warehouse.model.WaterStationsPatrol" >
  5 + <id column="id" property="id" jdbcType="VARCHAR" />
  6 + <result column="checkProjectControlRommWaterSupplySystem" property="checkprojectcontrolrommwatersupplysystem" jdbcType="VARCHAR" />
  7 + <result column="checkProjectControlRommSecuritySystem" property="checkprojectcontrolrommsecuritysystem" jdbcType="VARCHAR" />
  8 + <result column="checkProjectControlRommRunningRecord" property="checkprojectcontrolrommrunningrecord" jdbcType="VARCHAR" />
  9 + <result column="checkProjectControlRommDocumentHolder" property="checkprojectcontrolrommdocumentholder" jdbcType="VARCHAR" />
  10 + <result column="checkProjectControlRommGround" property="checkprojectcontrolrommground" jdbcType="VARCHAR" />
  11 + <result column="checkProjectControlRommResponsiblePerson" property="checkprojectcontrolrommresponsibleperson" jdbcType="VARCHAR" />
  12 + <result column="checkProjectControlRommnote" property="checkprojectcontrolrommnote" jdbcType="VARCHAR" />
  13 + <result column="checkProjectFrequencyConversionShow" property="checkprojectfrequencyconversionshow" jdbcType="VARCHAR" />
  14 + <result column="checkProjectFrequencyConversionClose" property="checkprojectfrequencyconversionclose" jdbcType="VARCHAR" />
  15 + <result column="checkProjectFrequencyConversionSanitation" property="checkprojectfrequencyconversionsanitation" jdbcType="VARCHAR" />
  16 + <result column="checkProjectFrequencyConversionResponsiblePerson" property="checkprojectfrequencyconversionresponsibleperson" jdbcType="VARCHAR" />
  17 + <result column="checkProjectFrequencyConversionNote" property="checkprojectfrequencyconversionnote" jdbcType="VARCHAR" />
  18 + <result column="checkProjectMeterBetweenTurbidityInstrumentPowerSupply" property="checkprojectmeterbetweenturbidityinstrumentpowersupply" jdbcType="VARCHAR" />
  19 + <result column="checkProjectMeterBetweenTurbidityInstrumentShow" property="checkprojectmeterbetweenturbidityinstrumentshow" jdbcType="VARCHAR" />
  20 + <result column="checkProjectMeterBetweenTurbidityInstrumentAppearance" property="checkprojectmeterbetweenturbidityinstrumentappearance" jdbcType="VARCHAR" />
  21 + <result column="checkProjectMeterBetweenTurbidityInstrumentRange" property="checkprojectmeterbetweenturbidityinstrumentrange" jdbcType="VARCHAR" />
  22 + <result column="checkProjectMeterBetweenTurbidityInstrumentDetection" property="checkprojectmeterbetweenturbidityinstrumentdetection" jdbcType="VARCHAR" />
  23 + <result column="checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson" property="checkprojectmeterbetweenturbidityinstrumentresponsibleperson" jdbcType="VARCHAR" />
  24 + <result column="checkProjectMeterBetweenTurbidityInstrumentNote" property="checkprojectmeterbetweenturbidityinstrumentnote" jdbcType="VARCHAR" />
  25 + <result column="checkProjectMeterBetweenFlowMeterPowerSupply" property="checkprojectmeterbetweenflowmeterpowersupply" jdbcType="VARCHAR" />
  26 + <result column="checkProjectMeterBetweenFlowMeterShow" property="checkprojectmeterbetweenflowmetershow" jdbcType="VARCHAR" />
  27 + <result column="checkProjectMeterBetweenFlowMeterAppearance" property="checkprojectmeterbetweenflowmeterappearance" jdbcType="VARCHAR" />
  28 + <result column="checkProjectMeterBetweenFlowMeterResponsiblePerson" property="checkprojectmeterbetweenflowmeterresponsibleperson" jdbcType="VARCHAR" />
  29 + <result column="checkProjectMeterBetweenFlowMeterNote" property="checkprojectmeterbetweenflowmeternote" jdbcType="VARCHAR" />
  30 + <result column="residualChlorineInstrumentPipeline" property="residualchlorineinstrumentpipeline" jdbcType="VARCHAR" />
  31 + <result column="residualChlorineInstrumentPowerSupply" property="residualchlorineinstrumentpowersupply" jdbcType="VARCHAR" />
  32 + <result column="residualChlorineInstrumentShow" property="residualchlorineinstrumentshow" jdbcType="VARCHAR" />
  33 + <result column="residualChlorineInstrumentAppearance" property="residualchlorineinstrumentappearance" jdbcType="VARCHAR" />
  34 + <result column="residualChlorineInstrumentPipelinMakeWater" property="residualchlorineinstrumentpipelinmakewater" jdbcType="VARCHAR" />
  35 + <result column="residualChlorineInstrumentEquipment" property="residualchlorineinstrumentequipment" jdbcType="VARCHAR" />
  36 + <result column="residualChlorineInstrumentGroundSanitation" property="residualchlorineinstrumentgroundsanitation" jdbcType="VARCHAR" />
  37 + <result column="residualChlorineInstrumentResponsiblePerson" property="residualchlorineinstrumentresponsibleperson" jdbcType="VARCHAR" />
  38 + <result column="residualChlorineInstrumentNote" property="residualchlorineinstrumentnote" jdbcType="VARCHAR" />
  39 + <result column="boosterPumpRoomWaterPump" property="boosterpumproomwaterpump" jdbcType="VARCHAR" />
  40 + <result column="boosterPumpRoomBearing" property="boosterpumproombearing" jdbcType="VARCHAR" />
  41 + <result column="boosterPumpRoomTheValue" property="boosterpumproomthevalue" jdbcType="VARCHAR" />
  42 + <result column="boosterPumpRoomPumpBody" property="boosterpumproompumpbody" jdbcType="VARCHAR" />
  43 + <result column="boosterPumpRoomNamePlate" property="boosterpumproomnameplate" jdbcType="VARCHAR" />
  44 + <result column="boosterPumpRoomPacking" property="boosterpumproompacking" jdbcType="VARCHAR" />
  45 + <result column="boosterPumpRoomShow" property="boosterpumproomshow" jdbcType="VARCHAR" />
  46 + <result column="boosterPumpRoomFan" property="boosterpumproomfan" jdbcType="VARCHAR" />
  47 + <result column="boosterPumpRoomDrainage" property="boosterpumproomdrainage" jdbcType="VARCHAR" />
  48 + <result column="boosterPumpRoomSanitation" property="boosterpumproomsanitation" jdbcType="VARCHAR" />
  49 + <result column="boosterPumpRoomResponsiblePerson" property="boosterpumproomresponsibleperson" jdbcType="VARCHAR" />
  50 + <result column="boosterPumpRoomNote" property="boosterpumproomnote" jdbcType="VARCHAR" />
  51 + <result column="clearWaterReserviorsStairs" property="clearwaterreserviorsstairs" jdbcType="VARCHAR" />
  52 + <result column="clearWaterReserviorsVent" property="clearwaterreserviorsvent" jdbcType="VARCHAR" />
  53 + <result column="clearWaterReserviorsPoolRoof" property="clearwaterreserviorspoolroof" jdbcType="VARCHAR" />
  54 + <result column="clearWaterReserviorsSanitation" property="clearwaterreserviorssanitation" jdbcType="VARCHAR" />
  55 + <result column="clearWaterReserviorsPumpBody" property="clearwaterreserviorspumpbody" jdbcType="VARCHAR" />
  56 + <result column="clearWaterReserviorsResponsiblePerson" property="clearwaterreserviorsresponsibleperson" jdbcType="VARCHAR" />
  57 + <result column="clearWaterReserviorsNote" property="clearwaterreserviorsnote" jdbcType="VARCHAR" />
  58 + <result column="betweenChlorineEquipment" property="betweenchlorineequipment" jdbcType="VARCHAR" />
  59 + <result column="betweenChlorinePipe" property="betweenchlorinepipe" jdbcType="VARCHAR" />
  60 + <result column="betweenChlorineDosingPump" property="betweenchlorinedosingpump" jdbcType="VARCHAR" />
  61 + <result column="betweenChlorineTraffic" property="betweenchlorinetraffic" jdbcType="VARCHAR" />
  62 + <result column="betweenChlorineFan" property="betweenchlorinefan" jdbcType="VARCHAR" />
  63 + <result column="betweenChlorineSanitation" property="betweenchlorinesanitation" jdbcType="VARCHAR" />
  64 + <result column="betweenChlorineResponsiblePerson" property="betweenchlorineresponsibleperson" jdbcType="VARCHAR" />
  65 + <result column="betweenChlorineNote" property="betweenchlorinenote" jdbcType="VARCHAR" />
  66 + <result column="groundEnvironmentWellLIDS" property="groundenvironmentwelllids" jdbcType="VARCHAR" />
  67 + <result column="groundEnvironmentDrainagen" property="groundenvironmentdrainagen" jdbcType="VARCHAR" />
  68 + <result column="groundEnvironmentWaterSupply" property="groundenvironmentwatersupply" jdbcType="VARCHAR" />
  69 + <result column="groundEnvironmentCable" property="groundenvironmentcable" jdbcType="VARCHAR" />
  70 + <result column="groundEnvironmentRoad" property="groundenvironmentroad" jdbcType="VARCHAR" />
  71 + <result column="groundEnvironmentResponsiblePerson" property="groundenvironmentresponsibleperson" jdbcType="VARCHAR" />
  72 + <result column="groundEnvironmentNote" property="groundenvironmentnote" jdbcType="VARCHAR" />
  73 + <result column="groundSecurityIllegal" property="groundsecurityillegal" jdbcType="VARCHAR" />
  74 + <result column="groundSecurityFire" property="groundsecurityfire" jdbcType="VARCHAR" />
  75 + <result column="groundSecurityRats" property="groundsecurityrats" jdbcType="VARCHAR" />
  76 + <result column="groundSecuritySuspiciousPersonnel" property="groundsecuritysuspiciouspersonnel" jdbcType="VARCHAR" />
  77 + <result column="groundSecurityResponsiblePerson" property="groundsecurityresponsibleperson" jdbcType="VARCHAR" />
  78 + <result column="groundSecurityNote" property="groundsecuritynote" jdbcType="VARCHAR" />
  79 + <result column="securityToolEmergency" property="securitytoolemergency" jdbcType="VARCHAR" />
  80 + <result column="securityToolFloodControlAnd" property="securitytoolfloodcontroland" jdbcType="VARCHAR" />
  81 + <result column="securityToolProtective" property="securitytoolprotective" jdbcType="VARCHAR" />
  82 + <result column="securityToolMainteance" property="securitytoolmainteance" jdbcType="VARCHAR" />
  83 + <result column="securityToolResponsiblePerson" property="securitytoolresponsibleperson" jdbcType="VARCHAR" />
  84 + <result column="securityToolNote" property="securitytoolnote" jdbcType="VARCHAR" />
  85 + <result column="userId" property="userid" jdbcType="INTEGER" />
  86 + <result column="creatTime" property="creattime" jdbcType="TIMESTAMP" />
  87 + <result column="reamke1" property="reamke1" jdbcType="VARCHAR" />
  88 + <result column="reamke2" property="reamke2" jdbcType="VARCHAR" />
  89 + <result column="reamke3" property="reamke3" jdbcType="VARCHAR" />
  90 + </resultMap>
  91 + <sql id="Base_Column_List" >
  92 + id, checkProjectControlRommWaterSupplySystem, checkProjectControlRommSecuritySystem,
  93 + checkProjectControlRommRunningRecord, checkProjectControlRommDocumentHolder, checkProjectControlRommGround,
  94 + checkProjectControlRommResponsiblePerson, checkProjectControlRommnote, checkProjectFrequencyConversionShow,
  95 + checkProjectFrequencyConversionClose, checkProjectFrequencyConversionSanitation,
  96 + checkProjectFrequencyConversionResponsiblePerson, checkProjectFrequencyConversionNote,
  97 + checkProjectMeterBetweenTurbidityInstrumentPowerSupply, checkProjectMeterBetweenTurbidityInstrumentShow,
  98 + checkProjectMeterBetweenTurbidityInstrumentAppearance, checkProjectMeterBetweenTurbidityInstrumentRange,
  99 + checkProjectMeterBetweenTurbidityInstrumentDetection, checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
  100 + checkProjectMeterBetweenTurbidityInstrumentNote, checkProjectMeterBetweenFlowMeterPowerSupply,
  101 + checkProjectMeterBetweenFlowMeterShow, checkProjectMeterBetweenFlowMeterAppearance,
  102 + checkProjectMeterBetweenFlowMeterResponsiblePerson, checkProjectMeterBetweenFlowMeterNote,
  103 + residualChlorineInstrumentPipeline, residualChlorineInstrumentPowerSupply, residualChlorineInstrumentShow,
  104 + residualChlorineInstrumentAppearance, residualChlorineInstrumentPipelinMakeWater,
  105 + residualChlorineInstrumentEquipment, residualChlorineInstrumentGroundSanitation,
  106 + residualChlorineInstrumentResponsiblePerson, residualChlorineInstrumentNote, boosterPumpRoomWaterPump,
  107 + boosterPumpRoomBearing, boosterPumpRoomTheValue, boosterPumpRoomPumpBody, boosterPumpRoomNamePlate,
  108 + boosterPumpRoomPacking, boosterPumpRoomShow, boosterPumpRoomFan, boosterPumpRoomDrainage,
  109 + boosterPumpRoomSanitation, boosterPumpRoomResponsiblePerson, boosterPumpRoomNote,
  110 + clearWaterReserviorsStairs, clearWaterReserviorsVent, clearWaterReserviorsPoolRoof,
  111 + clearWaterReserviorsSanitation, clearWaterReserviorsPumpBody, clearWaterReserviorsResponsiblePerson,
  112 + clearWaterReserviorsNote, betweenChlorineEquipment, betweenChlorinePipe, betweenChlorineDosingPump,
  113 + betweenChlorineTraffic, betweenChlorineFan, betweenChlorineSanitation, betweenChlorineResponsiblePerson,
  114 + betweenChlorineNote, groundEnvironmentWellLIDS, groundEnvironmentDrainagen, groundEnvironmentWaterSupply,
  115 + groundEnvironmentCable, groundEnvironmentRoad, groundEnvironmentResponsiblePerson,
  116 + groundEnvironmentNote, groundSecurityIllegal, groundSecurityFire, groundSecurityRats,
  117 + groundSecuritySuspiciousPersonnel, groundSecurityResponsiblePerson, groundSecurityNote,
  118 + securityToolEmergency, securityToolFloodControlAnd, securityToolProtective, securityToolMainteance,
  119 + securityToolResponsiblePerson, securityToolNote, userId, creatTime, reamke1, reamke2,
  120 + reamke3
  121 + </sql>
  122 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  123 + select
  124 + <include refid="Base_Column_List" />
  125 + from water_stations_patrol
  126 + where id = #{id,jdbcType=VARCHAR}
  127 + </select>
  128 +
  129 + <select id="findAll" resultMap="BaseResultMap" >
  130 + select
  131 + <include refid="Base_Column_List" />
  132 + from water_stations_patrol
  133 + </select>
  134 +
  135 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  136 + delete from water_stations_patrol
  137 + where id = #{id,jdbcType=VARCHAR}
  138 + </delete>
  139 + <insert id="insert" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
  140 + insert into water_stations_patrol (id, checkProjectControlRommWaterSupplySystem,
  141 + checkProjectControlRommSecuritySystem, checkProjectControlRommRunningRecord,
  142 + checkProjectControlRommDocumentHolder, checkProjectControlRommGround,
  143 + checkProjectControlRommResponsiblePerson, checkProjectControlRommnote,
  144 + checkProjectFrequencyConversionShow, checkProjectFrequencyConversionClose,
  145 + checkProjectFrequencyConversionSanitation, checkProjectFrequencyConversionResponsiblePerson,
  146 + checkProjectFrequencyConversionNote, checkProjectMeterBetweenTurbidityInstrumentPowerSupply,
  147 + checkProjectMeterBetweenTurbidityInstrumentShow, checkProjectMeterBetweenTurbidityInstrumentAppearance,
  148 + checkProjectMeterBetweenTurbidityInstrumentRange, checkProjectMeterBetweenTurbidityInstrumentDetection,
  149 + checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
  150 + checkProjectMeterBetweenTurbidityInstrumentNote, checkProjectMeterBetweenFlowMeterPowerSupply,
  151 + checkProjectMeterBetweenFlowMeterShow, checkProjectMeterBetweenFlowMeterAppearance,
  152 + checkProjectMeterBetweenFlowMeterResponsiblePerson, checkProjectMeterBetweenFlowMeterNote,
  153 + residualChlorineInstrumentPipeline, residualChlorineInstrumentPowerSupply,
  154 + residualChlorineInstrumentShow, residualChlorineInstrumentAppearance,
  155 + residualChlorineInstrumentPipelinMakeWater, residualChlorineInstrumentEquipment,
  156 + residualChlorineInstrumentGroundSanitation, residualChlorineInstrumentResponsiblePerson,
  157 + residualChlorineInstrumentNote, boosterPumpRoomWaterPump,
  158 + boosterPumpRoomBearing, boosterPumpRoomTheValue,
  159 + boosterPumpRoomPumpBody, boosterPumpRoomNamePlate,
  160 + boosterPumpRoomPacking, boosterPumpRoomShow,
  161 + boosterPumpRoomFan, boosterPumpRoomDrainage,
  162 + boosterPumpRoomSanitation, boosterPumpRoomResponsiblePerson,
  163 + boosterPumpRoomNote, clearWaterReserviorsStairs,
  164 + clearWaterReserviorsVent, clearWaterReserviorsPoolRoof,
  165 + clearWaterReserviorsSanitation, clearWaterReserviorsPumpBody,
  166 + clearWaterReserviorsResponsiblePerson, clearWaterReserviorsNote,
  167 + betweenChlorineEquipment, betweenChlorinePipe,
  168 + betweenChlorineDosingPump, betweenChlorineTraffic,
  169 + betweenChlorineFan, betweenChlorineSanitation,
  170 + betweenChlorineResponsiblePerson, betweenChlorineNote,
  171 + groundEnvironmentWellLIDS, groundEnvironmentDrainagen,
  172 + groundEnvironmentWaterSupply, groundEnvironmentCable,
  173 + groundEnvironmentRoad, groundEnvironmentResponsiblePerson,
  174 + groundEnvironmentNote, groundSecurityIllegal,
  175 + groundSecurityFire, groundSecurityRats,
  176 + groundSecuritySuspiciousPersonnel, groundSecurityResponsiblePerson,
  177 + groundSecurityNote, securityToolEmergency,
  178 + securityToolFloodControlAnd, securityToolProtective,
  179 + securityToolMainteance, securityToolResponsiblePerson,
  180 + securityToolNote, userId, creatTime,
  181 + reamke1, reamke2, reamke3
  182 + )
  183 + values (#{id,jdbcType=VARCHAR}, #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
  184 + #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR}, #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
  185 + #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR}, #{checkprojectcontrolrommground,jdbcType=VARCHAR},
  186 + #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR}, #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
  187 + #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR}, #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
  188 + #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR}, #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
  189 + #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
  190 + #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
  191 + #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
  192 + #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
  193 + #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
  194 + #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
  195 + #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
  196 + #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR}, #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
  197 + #{residualchlorineinstrumentshow,jdbcType=VARCHAR}, #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
  198 + #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR}, #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
  199 + #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR}, #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
  200 + #{residualchlorineinstrumentnote,jdbcType=VARCHAR}, #{boosterpumproomwaterpump,jdbcType=VARCHAR},
  201 + #{boosterpumproombearing,jdbcType=VARCHAR}, #{boosterpumproomthevalue,jdbcType=VARCHAR},
  202 + #{boosterpumproompumpbody,jdbcType=VARCHAR}, #{boosterpumproomnameplate,jdbcType=VARCHAR},
  203 + #{boosterpumproompacking,jdbcType=VARCHAR}, #{boosterpumproomshow,jdbcType=VARCHAR},
  204 + #{boosterpumproomfan,jdbcType=VARCHAR}, #{boosterpumproomdrainage,jdbcType=VARCHAR},
  205 + #{boosterpumproomsanitation,jdbcType=VARCHAR}, #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
  206 + #{boosterpumproomnote,jdbcType=VARCHAR}, #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
  207 + #{clearwaterreserviorsvent,jdbcType=VARCHAR}, #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
  208 + #{clearwaterreserviorssanitation,jdbcType=VARCHAR}, #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
  209 + #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR}, #{clearwaterreserviorsnote,jdbcType=VARCHAR},
  210 + #{betweenchlorineequipment,jdbcType=VARCHAR}, #{betweenchlorinepipe,jdbcType=VARCHAR},
  211 + #{betweenchlorinedosingpump,jdbcType=VARCHAR}, #{betweenchlorinetraffic,jdbcType=VARCHAR},
  212 + #{betweenchlorinefan,jdbcType=VARCHAR}, #{betweenchlorinesanitation,jdbcType=VARCHAR},
  213 + #{betweenchlorineresponsibleperson,jdbcType=VARCHAR}, #{betweenchlorinenote,jdbcType=VARCHAR},
  214 + #{groundenvironmentwelllids,jdbcType=VARCHAR}, #{groundenvironmentdrainagen,jdbcType=VARCHAR},
  215 + #{groundenvironmentwatersupply,jdbcType=VARCHAR}, #{groundenvironmentcable,jdbcType=VARCHAR},
  216 + #{groundenvironmentroad,jdbcType=VARCHAR}, #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
  217 + #{groundenvironmentnote,jdbcType=VARCHAR}, #{groundsecurityillegal,jdbcType=VARCHAR},
  218 + #{groundsecurityfire,jdbcType=VARCHAR}, #{groundsecurityrats,jdbcType=VARCHAR},
  219 + #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR}, #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
  220 + #{groundsecuritynote,jdbcType=VARCHAR}, #{securitytoolemergency,jdbcType=VARCHAR},
  221 + #{securitytoolfloodcontroland,jdbcType=VARCHAR}, #{securitytoolprotective,jdbcType=VARCHAR},
  222 + #{securitytoolmainteance,jdbcType=VARCHAR}, #{securitytoolresponsibleperson,jdbcType=VARCHAR},
  223 + #{securitytoolnote,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, #{creattime,jdbcType=TIMESTAMP},
  224 + #{reamke1,jdbcType=VARCHAR}, #{reamke2,jdbcType=VARCHAR}, #{reamke3,jdbcType=VARCHAR}
  225 + )
  226 + </insert>
  227 + <insert id="insertSelective" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
  228 + insert into water_stations_patrol
  229 + <trim prefix="(" suffix=")" suffixOverrides="," >
  230 + <if test="id != null" >
  231 + id,
  232 + </if>
  233 + <if test="checkprojectcontrolrommwatersupplysystem != null" >
  234 + checkProjectControlRommWaterSupplySystem,
  235 + </if>
  236 + <if test="checkprojectcontrolrommsecuritysystem != null" >
  237 + checkProjectControlRommSecuritySystem,
  238 + </if>
  239 + <if test="checkprojectcontrolrommrunningrecord != null" >
  240 + checkProjectControlRommRunningRecord,
  241 + </if>
  242 + <if test="checkprojectcontrolrommdocumentholder != null" >
  243 + checkProjectControlRommDocumentHolder,
  244 + </if>
  245 + <if test="checkprojectcontrolrommground != null" >
  246 + checkProjectControlRommGround,
  247 + </if>
  248 + <if test="checkprojectcontrolrommresponsibleperson != null" >
  249 + checkProjectControlRommResponsiblePerson,
  250 + </if>
  251 + <if test="checkprojectcontrolrommnote != null" >
  252 + checkProjectControlRommnote,
  253 + </if>
  254 + <if test="checkprojectfrequencyconversionshow != null" >
  255 + checkProjectFrequencyConversionShow,
  256 + </if>
  257 + <if test="checkprojectfrequencyconversionclose != null" >
  258 + checkProjectFrequencyConversionClose,
  259 + </if>
  260 + <if test="checkprojectfrequencyconversionsanitation != null" >
  261 + checkProjectFrequencyConversionSanitation,
  262 + </if>
  263 + <if test="checkprojectfrequencyconversionresponsibleperson != null" >
  264 + checkProjectFrequencyConversionResponsiblePerson,
  265 + </if>
  266 + <if test="checkprojectfrequencyconversionnote != null" >
  267 + checkProjectFrequencyConversionNote,
  268 + </if>
  269 + <if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
  270 + checkProjectMeterBetweenTurbidityInstrumentPowerSupply,
  271 + </if>
  272 + <if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
  273 + checkProjectMeterBetweenTurbidityInstrumentShow,
  274 + </if>
  275 + <if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
  276 + checkProjectMeterBetweenTurbidityInstrumentAppearance,
  277 + </if>
  278 + <if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
  279 + checkProjectMeterBetweenTurbidityInstrumentRange,
  280 + </if>
  281 + <if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
  282 + checkProjectMeterBetweenTurbidityInstrumentDetection,
  283 + </if>
  284 + <if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
  285 + checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
  286 + </if>
  287 + <if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
  288 + checkProjectMeterBetweenTurbidityInstrumentNote,
  289 + </if>
  290 + <if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
  291 + checkProjectMeterBetweenFlowMeterPowerSupply,
  292 + </if>
  293 + <if test="checkprojectmeterbetweenflowmetershow != null" >
  294 + checkProjectMeterBetweenFlowMeterShow,
  295 + </if>
  296 + <if test="checkprojectmeterbetweenflowmeterappearance != null" >
  297 + checkProjectMeterBetweenFlowMeterAppearance,
  298 + </if>
  299 + <if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
  300 + checkProjectMeterBetweenFlowMeterResponsiblePerson,
  301 + </if>
  302 + <if test="checkprojectmeterbetweenflowmeternote != null" >
  303 + checkProjectMeterBetweenFlowMeterNote,
  304 + </if>
  305 + <if test="residualchlorineinstrumentpipeline != null" >
  306 + residualChlorineInstrumentPipeline,
  307 + </if>
  308 + <if test="residualchlorineinstrumentpowersupply != null" >
  309 + residualChlorineInstrumentPowerSupply,
  310 + </if>
  311 + <if test="residualchlorineinstrumentshow != null" >
  312 + residualChlorineInstrumentShow,
  313 + </if>
  314 + <if test="residualchlorineinstrumentappearance != null" >
  315 + residualChlorineInstrumentAppearance,
  316 + </if>
  317 + <if test="residualchlorineinstrumentpipelinmakewater != null" >
  318 + residualChlorineInstrumentPipelinMakeWater,
  319 + </if>
  320 + <if test="residualchlorineinstrumentequipment != null" >
  321 + residualChlorineInstrumentEquipment,
  322 + </if>
  323 + <if test="residualchlorineinstrumentgroundsanitation != null" >
  324 + residualChlorineInstrumentGroundSanitation,
  325 + </if>
  326 + <if test="residualchlorineinstrumentresponsibleperson != null" >
  327 + residualChlorineInstrumentResponsiblePerson,
  328 + </if>
  329 + <if test="residualchlorineinstrumentnote != null" >
  330 + residualChlorineInstrumentNote,
  331 + </if>
  332 + <if test="boosterpumproomwaterpump != null" >
  333 + boosterPumpRoomWaterPump,
  334 + </if>
  335 + <if test="boosterpumproombearing != null" >
  336 + boosterPumpRoomBearing,
  337 + </if>
  338 + <if test="boosterpumproomthevalue != null" >
  339 + boosterPumpRoomTheValue,
  340 + </if>
  341 + <if test="boosterpumproompumpbody != null" >
  342 + boosterPumpRoomPumpBody,
  343 + </if>
  344 + <if test="boosterpumproomnameplate != null" >
  345 + boosterPumpRoomNamePlate,
  346 + </if>
  347 + <if test="boosterpumproompacking != null" >
  348 + boosterPumpRoomPacking,
  349 + </if>
  350 + <if test="boosterpumproomshow != null" >
  351 + boosterPumpRoomShow,
  352 + </if>
  353 + <if test="boosterpumproomfan != null" >
  354 + boosterPumpRoomFan,
  355 + </if>
  356 + <if test="boosterpumproomdrainage != null" >
  357 + boosterPumpRoomDrainage,
  358 + </if>
  359 + <if test="boosterpumproomsanitation != null" >
  360 + boosterPumpRoomSanitation,
  361 + </if>
  362 + <if test="boosterpumproomresponsibleperson != null" >
  363 + boosterPumpRoomResponsiblePerson,
  364 + </if>
  365 + <if test="boosterpumproomnote != null" >
  366 + boosterPumpRoomNote,
  367 + </if>
  368 + <if test="clearwaterreserviorsstairs != null" >
  369 + clearWaterReserviorsStairs,
  370 + </if>
  371 + <if test="clearwaterreserviorsvent != null" >
  372 + clearWaterReserviorsVent,
  373 + </if>
  374 + <if test="clearwaterreserviorspoolroof != null" >
  375 + clearWaterReserviorsPoolRoof,
  376 + </if>
  377 + <if test="clearwaterreserviorssanitation != null" >
  378 + clearWaterReserviorsSanitation,
  379 + </if>
  380 + <if test="clearwaterreserviorspumpbody != null" >
  381 + clearWaterReserviorsPumpBody,
  382 + </if>
  383 + <if test="clearwaterreserviorsresponsibleperson != null" >
  384 + clearWaterReserviorsResponsiblePerson,
  385 + </if>
  386 + <if test="clearwaterreserviorsnote != null" >
  387 + clearWaterReserviorsNote,
  388 + </if>
  389 + <if test="betweenchlorineequipment != null" >
  390 + betweenChlorineEquipment,
  391 + </if>
  392 + <if test="betweenchlorinepipe != null" >
  393 + betweenChlorinePipe,
  394 + </if>
  395 + <if test="betweenchlorinedosingpump != null" >
  396 + betweenChlorineDosingPump,
  397 + </if>
  398 + <if test="betweenchlorinetraffic != null" >
  399 + betweenChlorineTraffic,
  400 + </if>
  401 + <if test="betweenchlorinefan != null" >
  402 + betweenChlorineFan,
  403 + </if>
  404 + <if test="betweenchlorinesanitation != null" >
  405 + betweenChlorineSanitation,
  406 + </if>
  407 + <if test="betweenchlorineresponsibleperson != null" >
  408 + betweenChlorineResponsiblePerson,
  409 + </if>
  410 + <if test="betweenchlorinenote != null" >
  411 + betweenChlorineNote,
  412 + </if>
  413 + <if test="groundenvironmentwelllids != null" >
  414 + groundEnvironmentWellLIDS,
  415 + </if>
  416 + <if test="groundenvironmentdrainagen != null" >
  417 + groundEnvironmentDrainagen,
  418 + </if>
  419 + <if test="groundenvironmentwatersupply != null" >
  420 + groundEnvironmentWaterSupply,
  421 + </if>
  422 + <if test="groundenvironmentcable != null" >
  423 + groundEnvironmentCable,
  424 + </if>
  425 + <if test="groundenvironmentroad != null" >
  426 + groundEnvironmentRoad,
  427 + </if>
  428 + <if test="groundenvironmentresponsibleperson != null" >
  429 + groundEnvironmentResponsiblePerson,
  430 + </if>
  431 + <if test="groundenvironmentnote != null" >
  432 + groundEnvironmentNote,
  433 + </if>
  434 + <if test="groundsecurityillegal != null" >
  435 + groundSecurityIllegal,
  436 + </if>
  437 + <if test="groundsecurityfire != null" >
  438 + groundSecurityFire,
  439 + </if>
  440 + <if test="groundsecurityrats != null" >
  441 + groundSecurityRats,
  442 + </if>
  443 + <if test="groundsecuritysuspiciouspersonnel != null" >
  444 + groundSecuritySuspiciousPersonnel,
  445 + </if>
  446 + <if test="groundsecurityresponsibleperson != null" >
  447 + groundSecurityResponsiblePerson,
  448 + </if>
  449 + <if test="groundsecuritynote != null" >
  450 + groundSecurityNote,
  451 + </if>
  452 + <if test="securitytoolemergency != null" >
  453 + securityToolEmergency,
  454 + </if>
  455 + <if test="securitytoolfloodcontroland != null" >
  456 + securityToolFloodControlAnd,
  457 + </if>
  458 + <if test="securitytoolprotective != null" >
  459 + securityToolProtective,
  460 + </if>
  461 + <if test="securitytoolmainteance != null" >
  462 + securityToolMainteance,
  463 + </if>
  464 + <if test="securitytoolresponsibleperson != null" >
  465 + securityToolResponsiblePerson,
  466 + </if>
  467 + <if test="securitytoolnote != null" >
  468 + securityToolNote,
  469 + </if>
  470 + <if test="userid != null" >
  471 + userId,
  472 + </if>
  473 + <if test="creattime != null" >
  474 + creatTime,
  475 + </if>
  476 + <if test="reamke1 != null" >
  477 + reamke1,
  478 + </if>
  479 + <if test="reamke2 != null" >
  480 + reamke2,
  481 + </if>
  482 + <if test="reamke3 != null" >
  483 + reamke3,
  484 + </if>
  485 + </trim>
  486 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  487 + <if test="id != null" >
  488 + #{id,jdbcType=VARCHAR},
  489 + </if>
  490 + <if test="checkprojectcontrolrommwatersupplysystem != null" >
  491 + #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
  492 + </if>
  493 + <if test="checkprojectcontrolrommsecuritysystem != null" >
  494 + #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
  495 + </if>
  496 + <if test="checkprojectcontrolrommrunningrecord != null" >
  497 + #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
  498 + </if>
  499 + <if test="checkprojectcontrolrommdocumentholder != null" >
  500 + #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
  501 + </if>
  502 + <if test="checkprojectcontrolrommground != null" >
  503 + #{checkprojectcontrolrommground,jdbcType=VARCHAR},
  504 + </if>
  505 + <if test="checkprojectcontrolrommresponsibleperson != null" >
  506 + #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
  507 + </if>
  508 + <if test="checkprojectcontrolrommnote != null" >
  509 + #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
  510 + </if>
  511 + <if test="checkprojectfrequencyconversionshow != null" >
  512 + #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
  513 + </if>
  514 + <if test="checkprojectfrequencyconversionclose != null" >
  515 + #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
  516 + </if>
  517 + <if test="checkprojectfrequencyconversionsanitation != null" >
  518 + #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
  519 + </if>
  520 + <if test="checkprojectfrequencyconversionresponsibleperson != null" >
  521 + #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
  522 + </if>
  523 + <if test="checkprojectfrequencyconversionnote != null" >
  524 + #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
  525 + </if>
  526 + <if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
  527 + #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
  528 + </if>
  529 + <if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
  530 + #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
  531 + </if>
  532 + <if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
  533 + #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
  534 + </if>
  535 + <if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
  536 + #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
  537 + </if>
  538 + <if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
  539 + #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
  540 + </if>
  541 + <if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
  542 + #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
  543 + </if>
  544 + <if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
  545 + #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
  546 + </if>
  547 + <if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
  548 + #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
  549 + </if>
  550 + <if test="checkprojectmeterbetweenflowmetershow != null" >
  551 + #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
  552 + </if>
  553 + <if test="checkprojectmeterbetweenflowmeterappearance != null" >
  554 + #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
  555 + </if>
  556 + <if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
  557 + #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
  558 + </if>
  559 + <if test="checkprojectmeterbetweenflowmeternote != null" >
  560 + #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
  561 + </if>
  562 + <if test="residualchlorineinstrumentpipeline != null" >
  563 + #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
  564 + </if>
  565 + <if test="residualchlorineinstrumentpowersupply != null" >
  566 + #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
  567 + </if>
  568 + <if test="residualchlorineinstrumentshow != null" >
  569 + #{residualchlorineinstrumentshow,jdbcType=VARCHAR},
  570 + </if>
  571 + <if test="residualchlorineinstrumentappearance != null" >
  572 + #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
  573 + </if>
  574 + <if test="residualchlorineinstrumentpipelinmakewater != null" >
  575 + #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
  576 + </if>
  577 + <if test="residualchlorineinstrumentequipment != null" >
  578 + #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
  579 + </if>
  580 + <if test="residualchlorineinstrumentgroundsanitation != null" >
  581 + #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
  582 + </if>
  583 + <if test="residualchlorineinstrumentresponsibleperson != null" >
  584 + #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
  585 + </if>
  586 + <if test="residualchlorineinstrumentnote != null" >
  587 + #{residualchlorineinstrumentnote,jdbcType=VARCHAR},
  588 + </if>
  589 + <if test="boosterpumproomwaterpump != null" >
  590 + #{boosterpumproomwaterpump,jdbcType=VARCHAR},
  591 + </if>
  592 + <if test="boosterpumproombearing != null" >
  593 + #{boosterpumproombearing,jdbcType=VARCHAR},
  594 + </if>
  595 + <if test="boosterpumproomthevalue != null" >
  596 + #{boosterpumproomthevalue,jdbcType=VARCHAR},
  597 + </if>
  598 + <if test="boosterpumproompumpbody != null" >
  599 + #{boosterpumproompumpbody,jdbcType=VARCHAR},
  600 + </if>
  601 + <if test="boosterpumproomnameplate != null" >
  602 + #{boosterpumproomnameplate,jdbcType=VARCHAR},
  603 + </if>
  604 + <if test="boosterpumproompacking != null" >
  605 + #{boosterpumproompacking,jdbcType=VARCHAR},
  606 + </if>
  607 + <if test="boosterpumproomshow != null" >
  608 + #{boosterpumproomshow,jdbcType=VARCHAR},
  609 + </if>
  610 + <if test="boosterpumproomfan != null" >
  611 + #{boosterpumproomfan,jdbcType=VARCHAR},
  612 + </if>
  613 + <if test="boosterpumproomdrainage != null" >
  614 + #{boosterpumproomdrainage,jdbcType=VARCHAR},
  615 + </if>
  616 + <if test="boosterpumproomsanitation != null" >
  617 + #{boosterpumproomsanitation,jdbcType=VARCHAR},
  618 + </if>
  619 + <if test="boosterpumproomresponsibleperson != null" >
  620 + #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
  621 + </if>
  622 + <if test="boosterpumproomnote != null" >
  623 + #{boosterpumproomnote,jdbcType=VARCHAR},
  624 + </if>
  625 + <if test="clearwaterreserviorsstairs != null" >
  626 + #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
  627 + </if>
  628 + <if test="clearwaterreserviorsvent != null" >
  629 + #{clearwaterreserviorsvent,jdbcType=VARCHAR},
  630 + </if>
  631 + <if test="clearwaterreserviorspoolroof != null" >
  632 + #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
  633 + </if>
  634 + <if test="clearwaterreserviorssanitation != null" >
  635 + #{clearwaterreserviorssanitation,jdbcType=VARCHAR},
  636 + </if>
  637 + <if test="clearwaterreserviorspumpbody != null" >
  638 + #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
  639 + </if>
  640 + <if test="clearwaterreserviorsresponsibleperson != null" >
  641 + #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
  642 + </if>
  643 + <if test="clearwaterreserviorsnote != null" >
  644 + #{clearwaterreserviorsnote,jdbcType=VARCHAR},
  645 + </if>
  646 + <if test="betweenchlorineequipment != null" >
  647 + #{betweenchlorineequipment,jdbcType=VARCHAR},
  648 + </if>
  649 + <if test="betweenchlorinepipe != null" >
  650 + #{betweenchlorinepipe,jdbcType=VARCHAR},
  651 + </if>
  652 + <if test="betweenchlorinedosingpump != null" >
  653 + #{betweenchlorinedosingpump,jdbcType=VARCHAR},
  654 + </if>
  655 + <if test="betweenchlorinetraffic != null" >
  656 + #{betweenchlorinetraffic,jdbcType=VARCHAR},
  657 + </if>
  658 + <if test="betweenchlorinefan != null" >
  659 + #{betweenchlorinefan,jdbcType=VARCHAR},
  660 + </if>
  661 + <if test="betweenchlorinesanitation != null" >
  662 + #{betweenchlorinesanitation,jdbcType=VARCHAR},
  663 + </if>
  664 + <if test="betweenchlorineresponsibleperson != null" >
  665 + #{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
  666 + </if>
  667 + <if test="betweenchlorinenote != null" >
  668 + #{betweenchlorinenote,jdbcType=VARCHAR},
  669 + </if>
  670 + <if test="groundenvironmentwelllids != null" >
  671 + #{groundenvironmentwelllids,jdbcType=VARCHAR},
  672 + </if>
  673 + <if test="groundenvironmentdrainagen != null" >
  674 + #{groundenvironmentdrainagen,jdbcType=VARCHAR},
  675 + </if>
  676 + <if test="groundenvironmentwatersupply != null" >
  677 + #{groundenvironmentwatersupply,jdbcType=VARCHAR},
  678 + </if>
  679 + <if test="groundenvironmentcable != null" >
  680 + #{groundenvironmentcable,jdbcType=VARCHAR},
  681 + </if>
  682 + <if test="groundenvironmentroad != null" >
  683 + #{groundenvironmentroad,jdbcType=VARCHAR},
  684 + </if>
  685 + <if test="groundenvironmentresponsibleperson != null" >
  686 + #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
  687 + </if>
  688 + <if test="groundenvironmentnote != null" >
  689 + #{groundenvironmentnote,jdbcType=VARCHAR},
  690 + </if>
  691 + <if test="groundsecurityillegal != null" >
  692 + #{groundsecurityillegal,jdbcType=VARCHAR},
  693 + </if>
  694 + <if test="groundsecurityfire != null" >
  695 + #{groundsecurityfire,jdbcType=VARCHAR},
  696 + </if>
  697 + <if test="groundsecurityrats != null" >
  698 + #{groundsecurityrats,jdbcType=VARCHAR},
  699 + </if>
  700 + <if test="groundsecuritysuspiciouspersonnel != null" >
  701 + #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
  702 + </if>
  703 + <if test="groundsecurityresponsibleperson != null" >
  704 + #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
  705 + </if>
  706 + <if test="groundsecuritynote != null" >
  707 + #{groundsecuritynote,jdbcType=VARCHAR},
  708 + </if>
  709 + <if test="securitytoolemergency != null" >
  710 + #{securitytoolemergency,jdbcType=VARCHAR},
  711 + </if>
  712 + <if test="securitytoolfloodcontroland != null" >
  713 + #{securitytoolfloodcontroland,jdbcType=VARCHAR},
  714 + </if>
  715 + <if test="securitytoolprotective != null" >
  716 + #{securitytoolprotective,jdbcType=VARCHAR},
  717 + </if>
  718 + <if test="securitytoolmainteance != null" >
  719 + #{securitytoolmainteance,jdbcType=VARCHAR},
  720 + </if>
  721 + <if test="securitytoolresponsibleperson != null" >
  722 + #{securitytoolresponsibleperson,jdbcType=VARCHAR},
  723 + </if>
  724 + <if test="securitytoolnote != null" >
  725 + #{securitytoolnote,jdbcType=VARCHAR},
  726 + </if>
  727 + <if test="userid != null" >
  728 + #{userid,jdbcType=INTEGER},
  729 + </if>
  730 + <if test="creattime != null" >
  731 + #{creattime,jdbcType=TIMESTAMP},
  732 + </if>
  733 + <if test="reamke1 != null" >
  734 + #{reamke1,jdbcType=VARCHAR},
  735 + </if>
  736 + <if test="reamke2 != null" >
  737 + #{reamke2,jdbcType=VARCHAR},
  738 + </if>
  739 + <if test="reamke3 != null" >
  740 + #{reamke3,jdbcType=VARCHAR},
  741 + </if>
  742 + </trim>
  743 + </insert>
  744 + <update id="updateByPrimaryKeySelective" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
  745 + update water_stations_patrol
  746 + <set >
  747 + <if test="checkprojectcontrolrommwatersupplysystem != null" >
  748 + checkProjectControlRommWaterSupplySystem = #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
  749 + </if>
  750 + <if test="checkprojectcontrolrommsecuritysystem != null" >
  751 + checkProjectControlRommSecuritySystem = #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
  752 + </if>
  753 + <if test="checkprojectcontrolrommrunningrecord != null" >
  754 + checkProjectControlRommRunningRecord = #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
  755 + </if>
  756 + <if test="checkprojectcontrolrommdocumentholder != null" >
  757 + checkProjectControlRommDocumentHolder = #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
  758 + </if>
  759 + <if test="checkprojectcontrolrommground != null" >
  760 + checkProjectControlRommGround = #{checkprojectcontrolrommground,jdbcType=VARCHAR},
  761 + </if>
  762 + <if test="checkprojectcontrolrommresponsibleperson != null" >
  763 + checkProjectControlRommResponsiblePerson = #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
  764 + </if>
  765 + <if test="checkprojectcontrolrommnote != null" >
  766 + checkProjectControlRommnote = #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
  767 + </if>
  768 + <if test="checkprojectfrequencyconversionshow != null" >
  769 + checkProjectFrequencyConversionShow = #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
  770 + </if>
  771 + <if test="checkprojectfrequencyconversionclose != null" >
  772 + checkProjectFrequencyConversionClose = #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
  773 + </if>
  774 + <if test="checkprojectfrequencyconversionsanitation != null" >
  775 + checkProjectFrequencyConversionSanitation = #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
  776 + </if>
  777 + <if test="checkprojectfrequencyconversionresponsibleperson != null" >
  778 + checkProjectFrequencyConversionResponsiblePerson = #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
  779 + </if>
  780 + <if test="checkprojectfrequencyconversionnote != null" >
  781 + checkProjectFrequencyConversionNote = #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
  782 + </if>
  783 + <if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
  784 + checkProjectMeterBetweenTurbidityInstrumentPowerSupply = #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
  785 + </if>
  786 + <if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
  787 + checkProjectMeterBetweenTurbidityInstrumentShow = #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
  788 + </if>
  789 + <if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
  790 + checkProjectMeterBetweenTurbidityInstrumentAppearance = #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
  791 + </if>
  792 + <if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
  793 + checkProjectMeterBetweenTurbidityInstrumentRange = #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
  794 + </if>
  795 + <if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
  796 + checkProjectMeterBetweenTurbidityInstrumentDetection = #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
  797 + </if>
  798 + <if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
  799 + checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson = #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
  800 + </if>
  801 + <if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
  802 + checkProjectMeterBetweenTurbidityInstrumentNote = #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
  803 + </if>
  804 + <if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
  805 + checkProjectMeterBetweenFlowMeterPowerSupply = #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
  806 + </if>
  807 + <if test="checkprojectmeterbetweenflowmetershow != null" >
  808 + checkProjectMeterBetweenFlowMeterShow = #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
  809 + </if>
  810 + <if test="checkprojectmeterbetweenflowmeterappearance != null" >
  811 + checkProjectMeterBetweenFlowMeterAppearance = #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
  812 + </if>
  813 + <if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
  814 + checkProjectMeterBetweenFlowMeterResponsiblePerson = #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
  815 + </if>
  816 + <if test="checkprojectmeterbetweenflowmeternote != null" >
  817 + checkProjectMeterBetweenFlowMeterNote = #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
  818 + </if>
  819 + <if test="residualchlorineinstrumentpipeline != null" >
  820 + residualChlorineInstrumentPipeline = #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
  821 + </if>
  822 + <if test="residualchlorineinstrumentpowersupply != null" >
  823 + residualChlorineInstrumentPowerSupply = #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
  824 + </if>
  825 + <if test="residualchlorineinstrumentshow != null" >
  826 + residualChlorineInstrumentShow = #{residualchlorineinstrumentshow,jdbcType=VARCHAR},
  827 + </if>
  828 + <if test="residualchlorineinstrumentappearance != null" >
  829 + residualChlorineInstrumentAppearance = #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
  830 + </if>
  831 + <if test="residualchlorineinstrumentpipelinmakewater != null" >
  832 + residualChlorineInstrumentPipelinMakeWater = #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
  833 + </if>
  834 + <if test="residualchlorineinstrumentequipment != null" >
  835 + residualChlorineInstrumentEquipment = #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
  836 + </if>
  837 + <if test="residualchlorineinstrumentgroundsanitation != null" >
  838 + residualChlorineInstrumentGroundSanitation = #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
  839 + </if>
  840 + <if test="residualchlorineinstrumentresponsibleperson != null" >
  841 + residualChlorineInstrumentResponsiblePerson = #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
  842 + </if>
  843 + <if test="residualchlorineinstrumentnote != null" >
  844 + residualChlorineInstrumentNote = #{residualchlorineinstrumentnote,jdbcType=VARCHAR},
  845 + </if>
  846 + <if test="boosterpumproomwaterpump != null" >
  847 + boosterPumpRoomWaterPump = #{boosterpumproomwaterpump,jdbcType=VARCHAR},
  848 + </if>
  849 + <if test="boosterpumproombearing != null" >
  850 + boosterPumpRoomBearing = #{boosterpumproombearing,jdbcType=VARCHAR},
  851 + </if>
  852 + <if test="boosterpumproomthevalue != null" >
  853 + boosterPumpRoomTheValue = #{boosterpumproomthevalue,jdbcType=VARCHAR},
  854 + </if>
  855 + <if test="boosterpumproompumpbody != null" >
  856 + boosterPumpRoomPumpBody = #{boosterpumproompumpbody,jdbcType=VARCHAR},
  857 + </if>
  858 + <if test="boosterpumproomnameplate != null" >
  859 + boosterPumpRoomNamePlate = #{boosterpumproomnameplate,jdbcType=VARCHAR},
  860 + </if>
  861 + <if test="boosterpumproompacking != null" >
  862 + boosterPumpRoomPacking = #{boosterpumproompacking,jdbcType=VARCHAR},
  863 + </if>
  864 + <if test="boosterpumproomshow != null" >
  865 + boosterPumpRoomShow = #{boosterpumproomshow,jdbcType=VARCHAR},
  866 + </if>
  867 + <if test="boosterpumproomfan != null" >
  868 + boosterPumpRoomFan = #{boosterpumproomfan,jdbcType=VARCHAR},
  869 + </if>
  870 + <if test="boosterpumproomdrainage != null" >
  871 + boosterPumpRoomDrainage = #{boosterpumproomdrainage,jdbcType=VARCHAR},
  872 + </if>
  873 + <if test="boosterpumproomsanitation != null" >
  874 + boosterPumpRoomSanitation = #{boosterpumproomsanitation,jdbcType=VARCHAR},
  875 + </if>
  876 + <if test="boosterpumproomresponsibleperson != null" >
  877 + boosterPumpRoomResponsiblePerson = #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
  878 + </if>
  879 + <if test="boosterpumproomnote != null" >
  880 + boosterPumpRoomNote = #{boosterpumproomnote,jdbcType=VARCHAR},
  881 + </if>
  882 + <if test="clearwaterreserviorsstairs != null" >
  883 + clearWaterReserviorsStairs = #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
  884 + </if>
  885 + <if test="clearwaterreserviorsvent != null" >
  886 + clearWaterReserviorsVent = #{clearwaterreserviorsvent,jdbcType=VARCHAR},
  887 + </if>
  888 + <if test="clearwaterreserviorspoolroof != null" >
  889 + clearWaterReserviorsPoolRoof = #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
  890 + </if>
  891 + <if test="clearwaterreserviorssanitation != null" >
  892 + clearWaterReserviorsSanitation = #{clearwaterreserviorssanitation,jdbcType=VARCHAR},
  893 + </if>
  894 + <if test="clearwaterreserviorspumpbody != null" >
  895 + clearWaterReserviorsPumpBody = #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
  896 + </if>
  897 + <if test="clearwaterreserviorsresponsibleperson != null" >
  898 + clearWaterReserviorsResponsiblePerson = #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
  899 + </if>
  900 + <if test="clearwaterreserviorsnote != null" >
  901 + clearWaterReserviorsNote = #{clearwaterreserviorsnote,jdbcType=VARCHAR},
  902 + </if>
  903 + <if test="betweenchlorineequipment != null" >
  904 + betweenChlorineEquipment = #{betweenchlorineequipment,jdbcType=VARCHAR},
  905 + </if>
  906 + <if test="betweenchlorinepipe != null" >
  907 + betweenChlorinePipe = #{betweenchlorinepipe,jdbcType=VARCHAR},
  908 + </if>
  909 + <if test="betweenchlorinedosingpump != null" >
  910 + betweenChlorineDosingPump = #{betweenchlorinedosingpump,jdbcType=VARCHAR},
  911 + </if>
  912 + <if test="betweenchlorinetraffic != null" >
  913 + betweenChlorineTraffic = #{betweenchlorinetraffic,jdbcType=VARCHAR},
  914 + </if>
  915 + <if test="betweenchlorinefan != null" >
  916 + betweenChlorineFan = #{betweenchlorinefan,jdbcType=VARCHAR},
  917 + </if>
  918 + <if test="betweenchlorinesanitation != null" >
  919 + betweenChlorineSanitation = #{betweenchlorinesanitation,jdbcType=VARCHAR},
  920 + </if>
  921 + <if test="betweenchlorineresponsibleperson != null" >
  922 + betweenChlorineResponsiblePerson = #{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
  923 + </if>
  924 + <if test="betweenchlorinenote != null" >
  925 + betweenChlorineNote = #{betweenchlorinenote,jdbcType=VARCHAR},
  926 + </if>
  927 + <if test="groundenvironmentwelllids != null" >
  928 + groundEnvironmentWellLIDS = #{groundenvironmentwelllids,jdbcType=VARCHAR},
  929 + </if>
  930 + <if test="groundenvironmentdrainagen != null" >
  931 + groundEnvironmentDrainagen = #{groundenvironmentdrainagen,jdbcType=VARCHAR},
  932 + </if>
  933 + <if test="groundenvironmentwatersupply != null" >
  934 + groundEnvironmentWaterSupply = #{groundenvironmentwatersupply,jdbcType=VARCHAR},
  935 + </if>
  936 + <if test="groundenvironmentcable != null" >
  937 + groundEnvironmentCable = #{groundenvironmentcable,jdbcType=VARCHAR},
  938 + </if>
  939 + <if test="groundenvironmentroad != null" >
  940 + groundEnvironmentRoad = #{groundenvironmentroad,jdbcType=VARCHAR},
  941 + </if>
  942 + <if test="groundenvironmentresponsibleperson != null" >
  943 + groundEnvironmentResponsiblePerson = #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
  944 + </if>
  945 + <if test="groundenvironmentnote != null" >
  946 + groundEnvironmentNote = #{groundenvironmentnote,jdbcType=VARCHAR},
  947 + </if>
  948 + <if test="groundsecurityillegal != null" >
  949 + groundSecurityIllegal = #{groundsecurityillegal,jdbcType=VARCHAR},
  950 + </if>
  951 + <if test="groundsecurityfire != null" >
  952 + groundSecurityFire = #{groundsecurityfire,jdbcType=VARCHAR},
  953 + </if>
  954 + <if test="groundsecurityrats != null" >
  955 + groundSecurityRats = #{groundsecurityrats,jdbcType=VARCHAR},
  956 + </if>
  957 + <if test="groundsecuritysuspiciouspersonnel != null" >
  958 + groundSecuritySuspiciousPersonnel = #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
  959 + </if>
  960 + <if test="groundsecurityresponsibleperson != null" >
  961 + groundSecurityResponsiblePerson = #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
  962 + </if>
  963 + <if test="groundsecuritynote != null" >
  964 + groundSecurityNote = #{groundsecuritynote,jdbcType=VARCHAR},
  965 + </if>
  966 + <if test="securitytoolemergency != null" >
  967 + securityToolEmergency = #{securitytoolemergency,jdbcType=VARCHAR},
  968 + </if>
  969 + <if test="securitytoolfloodcontroland != null" >
  970 + securityToolFloodControlAnd = #{securitytoolfloodcontroland,jdbcType=VARCHAR},
  971 + </if>
  972 + <if test="securitytoolprotective != null" >
  973 + securityToolProtective = #{securitytoolprotective,jdbcType=VARCHAR},
  974 + </if>
  975 + <if test="securitytoolmainteance != null" >
  976 + securityToolMainteance = #{securitytoolmainteance,jdbcType=VARCHAR},
  977 + </if>
  978 + <if test="securitytoolresponsibleperson != null" >
  979 + securityToolResponsiblePerson = #{securitytoolresponsibleperson,jdbcType=VARCHAR},
  980 + </if>
  981 + <if test="securitytoolnote != null" >
  982 + securityToolNote = #{securitytoolnote,jdbcType=VARCHAR},
  983 + </if>
  984 + <if test="userid != null" >
  985 + userId = #{userid,jdbcType=INTEGER},
  986 + </if>
  987 + <if test="creattime != null" >
  988 + creatTime = #{creattime,jdbcType=TIMESTAMP},
  989 + </if>
  990 + <if test="reamke1 != null" >
  991 + reamke1 = #{reamke1,jdbcType=VARCHAR},
  992 + </if>
  993 + <if test="reamke2 != null" >
  994 + reamke2 = #{reamke2,jdbcType=VARCHAR},
  995 + </if>
  996 + <if test="reamke3 != null" >
  997 + reamke3 = #{reamke3,jdbcType=VARCHAR},
  998 + </if>
  999 + </set>
  1000 + where id = #{id,jdbcType=VARCHAR}
  1001 + </update>
  1002 + <update id="updateByPrimaryKey" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
  1003 + update water_stations_patrol
  1004 + set checkProjectControlRommWaterSupplySystem = #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
  1005 + checkProjectControlRommSecuritySystem = #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
  1006 + checkProjectControlRommRunningRecord = #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
  1007 + checkProjectControlRommDocumentHolder = #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
  1008 + checkProjectControlRommGround = #{checkprojectcontrolrommground,jdbcType=VARCHAR},
  1009 + checkProjectControlRommResponsiblePerson = #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
  1010 + checkProjectControlRommnote = #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
  1011 + checkProjectFrequencyConversionShow = #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
  1012 + checkProjectFrequencyConversionClose = #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
  1013 + checkProjectFrequencyConversionSanitation = #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
  1014 + checkProjectFrequencyConversionResponsiblePerson = #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
  1015 + checkProjectFrequencyConversionNote = #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
  1016 + checkProjectMeterBetweenTurbidityInstrumentPowerSupply = #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
  1017 + checkProjectMeterBetweenTurbidityInstrumentShow = #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
  1018 + checkProjectMeterBetweenTurbidityInstrumentAppearance = #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
  1019 + checkProjectMeterBetweenTurbidityInstrumentRange = #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
  1020 + checkProjectMeterBetweenTurbidityInstrumentDetection = #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
  1021 + checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson = #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
  1022 + checkProjectMeterBetweenTurbidityInstrumentNote = #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
  1023 + checkProjectMeterBetweenFlowMeterPowerSupply = #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
  1024 + checkProjectMeterBetweenFlowMeterShow = #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
  1025 + checkProjectMeterBetweenFlowMeterAppearance = #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
  1026 + checkProjectMeterBetweenFlowMeterResponsiblePerson = #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
  1027 + checkProjectMeterBetweenFlowMeterNote = #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
  1028 + residualChlorineInstrumentPipeline = #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
  1029 + residualChlorineInstrumentPowerSupply = #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
  1030 + residualChlorineInstrumentShow = #{residualchlorineinstrumentshow,jdbcType=VARCHAR},
  1031 + residualChlorineInstrumentAppearance = #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
  1032 + residualChlorineInstrumentPipelinMakeWater = #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
  1033 + residualChlorineInstrumentEquipment = #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
  1034 + residualChlorineInstrumentGroundSanitation = #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
  1035 + residualChlorineInstrumentResponsiblePerson = #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
  1036 + residualChlorineInstrumentNote = #{residualchlorineinstrumentnote,jdbcType=VARCHAR},
  1037 + boosterPumpRoomWaterPump = #{boosterpumproomwaterpump,jdbcType=VARCHAR},
  1038 + boosterPumpRoomBearing = #{boosterpumproombearing,jdbcType=VARCHAR},
  1039 + boosterPumpRoomTheValue = #{boosterpumproomthevalue,jdbcType=VARCHAR},
  1040 + boosterPumpRoomPumpBody = #{boosterpumproompumpbody,jdbcType=VARCHAR},
  1041 + boosterPumpRoomNamePlate = #{boosterpumproomnameplate,jdbcType=VARCHAR},
  1042 + boosterPumpRoomPacking = #{boosterpumproompacking,jdbcType=VARCHAR},
  1043 + boosterPumpRoomShow = #{boosterpumproomshow,jdbcType=VARCHAR},
  1044 + boosterPumpRoomFan = #{boosterpumproomfan,jdbcType=VARCHAR},
  1045 + boosterPumpRoomDrainage = #{boosterpumproomdrainage,jdbcType=VARCHAR},
  1046 + boosterPumpRoomSanitation = #{boosterpumproomsanitation,jdbcType=VARCHAR},
  1047 + boosterPumpRoomResponsiblePerson = #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
  1048 + boosterPumpRoomNote = #{boosterpumproomnote,jdbcType=VARCHAR},
  1049 + clearWaterReserviorsStairs = #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
  1050 + clearWaterReserviorsVent = #{clearwaterreserviorsvent,jdbcType=VARCHAR},
  1051 + clearWaterReserviorsPoolRoof = #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
  1052 + clearWaterReserviorsSanitation = #{clearwaterreserviorssanitation,jdbcType=VARCHAR},
  1053 + clearWaterReserviorsPumpBody = #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
  1054 + clearWaterReserviorsResponsiblePerson = #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
  1055 + clearWaterReserviorsNote = #{clearwaterreserviorsnote,jdbcType=VARCHAR},
  1056 + betweenChlorineEquipment = #{betweenchlorineequipment,jdbcType=VARCHAR},
  1057 + betweenChlorinePipe = #{betweenchlorinepipe,jdbcType=VARCHAR},
  1058 + betweenChlorineDosingPump = #{betweenchlorinedosingpump,jdbcType=VARCHAR},
  1059 + betweenChlorineTraffic = #{betweenchlorinetraffic,jdbcType=VARCHAR},
  1060 + betweenChlorineFan = #{betweenchlorinefan,jdbcType=VARCHAR},
  1061 + betweenChlorineSanitation = #{betweenchlorinesanitation,jdbcType=VARCHAR},
  1062 + betweenChlorineResponsiblePerson = #{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
  1063 + betweenChlorineNote = #{betweenchlorinenote,jdbcType=VARCHAR},
  1064 + groundEnvironmentWellLIDS = #{groundenvironmentwelllids,jdbcType=VARCHAR},
  1065 + groundEnvironmentDrainagen = #{groundenvironmentdrainagen,jdbcType=VARCHAR},
  1066 + groundEnvironmentWaterSupply = #{groundenvironmentwatersupply,jdbcType=VARCHAR},
  1067 + groundEnvironmentCable = #{groundenvironmentcable,jdbcType=VARCHAR},
  1068 + groundEnvironmentRoad = #{groundenvironmentroad,jdbcType=VARCHAR},
  1069 + groundEnvironmentResponsiblePerson = #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
  1070 + groundEnvironmentNote = #{groundenvironmentnote,jdbcType=VARCHAR},
  1071 + groundSecurityIllegal = #{groundsecurityillegal,jdbcType=VARCHAR},
  1072 + groundSecurityFire = #{groundsecurityfire,jdbcType=VARCHAR},
  1073 + groundSecurityRats = #{groundsecurityrats,jdbcType=VARCHAR},
  1074 + groundSecuritySuspiciousPersonnel = #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
  1075 + groundSecurityResponsiblePerson = #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
  1076 + groundSecurityNote = #{groundsecuritynote,jdbcType=VARCHAR},
  1077 + securityToolEmergency = #{securitytoolemergency,jdbcType=VARCHAR},
  1078 + securityToolFloodControlAnd = #{securitytoolfloodcontroland,jdbcType=VARCHAR},
  1079 + securityToolProtective = #{securitytoolprotective,jdbcType=VARCHAR},
  1080 + securityToolMainteance = #{securitytoolmainteance,jdbcType=VARCHAR},
  1081 + securityToolResponsiblePerson = #{securitytoolresponsibleperson,jdbcType=VARCHAR},
  1082 + securityToolNote = #{securitytoolnote,jdbcType=VARCHAR},
  1083 + userId = #{userid,jdbcType=INTEGER},
  1084 + creatTime = #{creattime,jdbcType=TIMESTAMP},
  1085 + reamke1 = #{reamke1,jdbcType=VARCHAR},
  1086 + reamke2 = #{reamke2,jdbcType=VARCHAR},
  1087 + reamke3 = #{reamke3,jdbcType=VARCHAR}
  1088 + where id = #{id,jdbcType=VARCHAR}
  1089 + </update>
  1090 +</mapper>