‘chenzhilei’ пре 2 месеци
родитељ
комит
47b82d59e1

+ 0 - 5
pom.xml

@@ -69,11 +69,6 @@
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-web</artifactId>
         </dependency>
-        <dependency>
-            <groupId>com.baomidou</groupId>
-            <artifactId>mybatis-plus-boot-starter</artifactId>
-            <version>3.5.3.1</version>
-        </dependency>
 
         <!-- Spring Boot Web Services -->
         <dependency>

+ 30 - 0
src/main/java/com/webserver/LisWebServiceApplication.java

@@ -0,0 +1,30 @@
+package com.webserver;
+
+import com.dtflys.forest.springboot.annotation.ForestScan;
+import lombok.extern.slf4j.Slf4j;
+import org.mybatis.spring.annotation.MapperScan;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.context.ConfigurableApplicationContext;
+import org.springframework.scheduling.annotation.EnableScheduling;
+import org.springframework.transaction.annotation.EnableTransactionManagement;
+
+import java.net.InetAddress;
+
+/**
+ * @author dj
+ */
+@SpringBootApplication
+@EnableTransactionManagement
+@EnableScheduling
+@EnableConfigurationProperties
+@Slf4j
+public class LisWebServiceApplication {
+
+    public static void main(String[] args) {
+        ConfigurableApplicationContext application = SpringApplication.run(LisWebServiceApplication.class, args);
+        System.out.println("WebService已发布在: http://localhost:8080/services/hello?wsdl");
+    }
+
+}

+ 1 - 1
src/main/java/com/webserver/config/MybatisPlusConfig.java

@@ -14,7 +14,7 @@ import org.springframework.context.annotation.Configuration;
  **/
 
 @Configuration
-@MapperScan("thyyxxk.webserver.dao")
+@MapperScan("com.webserver.core.*")
 public class MybatisPlusConfig {
 
     @Bean

+ 1 - 1
src/main/java/com/webserver/core/zdUnitCode/model/ZdUnitCode.java → src/main/java/com/webserver/core/zdUnitCode/ZdUnitCode.java

@@ -1,4 +1,4 @@
-package com.webserver.core.zdUnitCode.model;
+package com.webserver.core.zdUnitCode;
 
 import java.io.Serializable;
 import java.math.BigDecimal;

+ 12 - 0
src/main/java/com/webserver/core/zdUnitCode/ZdUnitCodeMapper.java

@@ -0,0 +1,12 @@
+package com.webserver.core.zdUnitCode;
+
+import java.util.List;
+import org.apache.ibatis.annotations.Param;
+import org.apache.ibatis.annotations.Select;
+import org.mapstruct.Mapper;
+
+@Mapper
+public interface ZdUnitCodeMapper {
+    @Select("SELECT * FROM zd_unit_code WHERE code = #{code}")
+    List<ZdUnitCode> selectByAge(@Param("code") String code);
+}

+ 22 - 0
src/main/java/com/webserver/core/zdUnitCode/ZdUnitCodeService.java

@@ -0,0 +1,22 @@
+package com.webserver.core.zdUnitCode;
+
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import javax.jws.WebParam;
+import javax.jws.WebService;
+import java.util.List;
+
+
+@Service
+@WebService
+public class ZdUnitCodeService {
+
+    @Autowired
+    private ZdUnitCodeMapper mapper;
+
+    public List<ZdUnitCode> getDeptList(@WebParam(name = "code")String code){
+        return mapper.selectByAge(code);
+    }
+}

+ 0 - 11
src/main/java/com/webserver/core/zdUnitCode/controller/ZdUnitCodeController.java

@@ -1,11 +0,0 @@
-package com.webserver.core.zdUnitCode.controller;
-
-import org.springframework.stereotype.Service;
-
-import javax.jws.WebService;
-
-@Service
-@WebService
-public class ZdUnitCodeController {
-
-}

+ 0 - 70
src/main/java/com/webserver/core/zdUnitCode/mapper/ZdUnitCodeMapper.java

@@ -1,70 +0,0 @@
-package com.webserver.core.zdUnitCode.mapper;
-
-import com.baomidou.mybatisplus.core.conditions.Wrapper;
-import com.webserver.core.zdUnitCode.model.ZdUnitCode;
-import com.webserver.core.zdUnitCode.model.ZdUnitCodeExample;
-import java.util.List;
-import org.apache.ibatis.annotations.Param;
-import org.apache.ibatis.annotations.Select;
-import org.apache.poi.ss.formula.functions.T;
-
-public interface ZdUnitCodeMapper {
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    int countByExample(ZdUnitCodeExample example);
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    int deleteByExample(ZdUnitCodeExample example);
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    int insert(ZdUnitCode record);
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    int insertSelective(ZdUnitCode record);
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    List<ZdUnitCode> selectByExample(ZdUnitCodeExample example);
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    int updateByExampleSelective(@Param("record") ZdUnitCode record, @Param("example") ZdUnitCodeExample example);
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    int updateByExample(@Param("record") ZdUnitCode record, @Param("example") ZdUnitCodeExample example);
-
-    @Select("SELECT * FROM zd_unit_code WHERE code = #{code}")
-    List<ZdUnitCode> selectByAge(@Param("code") String code);
-}

+ 0 - 609
src/main/java/com/webserver/core/zdUnitCode/mapper/ZdUnitCodeMapper.xml

@@ -1,609 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
-<mapper namespace="com.huaihai.core.zdUnitCode.mapper.ZdUnitCodeMapper" >
-  <resultMap id="BaseResultMap" type="com.huaihai.core.zdUnitCode.model.ZdUnitCode" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    <result column="code" property="code" jdbcType="VARCHAR" />
-    <result column="name" property="name" jdbcType="VARCHAR" />
-    <result column="class_code" property="classCode" jdbcType="VARCHAR" />
-    <result column="py_code" property="pyCode" jdbcType="VARCHAR" />
-    <result column="d_code" property="dCode" jdbcType="VARCHAR" />
-    <result column="mz_flag" property="mzFlag" jdbcType="CHAR" />
-    <result column="del_flag" property="delFlag" jdbcType="CHAR" />
-    <result column="n_code" property="nCode" jdbcType="VARCHAR" />
-    <result column="upper_unit1" property="upperUnit1" jdbcType="CHAR" />
-    <result column="upper_name1" property="upperName1" jdbcType="CHAR" />
-    <result column="kqks_code" property="kqksCode" jdbcType="VARCHAR" />
-    <result column="kqks_name" property="kqksName" jdbcType="VARCHAR" />
-    <result column="flag" property="flag" jdbcType="CHAR" />
-    <result column="abbnm" property="abbnm" jdbcType="VARCHAR" />
-    <result column="yj_flag" property="yjFlag" jdbcType="CHAR" />
-    <result column="mzrc_flag" property="mzrcFlag" jdbcType="CHAR" />
-    <result column="parent_code" property="parentCode" jdbcType="CHAR" />
-    <result column="sq_flag" property="sqFlag" jdbcType="CHAR" />
-    <result column="gh_charge_flag" property="ghChargeFlag" jdbcType="CHAR" />
-    <result column="office_pos" property="officePos" jdbcType="VARCHAR" />
-    <result column="supply_flag" property="supplyFlag" jdbcType="CHAR" />
-    <result column="xnh_dept_code" property="xnhDeptCode" jdbcType="VARCHAR" />
-    <result column="xnh_dept_name" property="xnhDeptName" jdbcType="VARCHAR" />
-    <result column="ghjz_flag" property="ghjzFlag" jdbcType="CHAR" />
-    <result column="parent_code_hs" property="parentCodeHs" jdbcType="VARCHAR" />
-    <result column="mz_class" property="mzClass" jdbcType="VARCHAR" />
-    <result column="sort_code" property="sortCode" jdbcType="VARCHAR" />
-    <result column="op_id" property="opId" jdbcType="CHAR" />
-    <result column="op_date" property="opDate" jdbcType="TIMESTAMP" />
-    <result column="si_caty" property="siCaty" jdbcType="VARCHAR" />
-    <result column="wjw_code" property="wjwCode" jdbcType="VARCHAR" />
-    <result column="inpatient_flag" property="inpatientFlag" jdbcType="TINYINT" />
-    <result column="unit_num" property="unitNum" jdbcType="INTEGER" />
-    <result column="ks_zkl" property="ksZkl" jdbcType="DECIMAL" />
-    <result column="hz_day" property="hzDay" jdbcType="INTEGER" />
-    <result column="dept_describe" property="deptDescribe" jdbcType="VARCHAR" />
-    <result column="office_pos1" property="officePos1" jdbcType="VARCHAR" />
-    <result column="si_caty_name" property="siCatyName" jdbcType="NVARCHAR" />
-  </resultMap>
-  <sql id="Example_Where_Clause" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    <where >
-      <foreach collection="oredCriteria" item="criteria" separator="or" >
-        <if test="criteria.valid" >
-          <trim prefix="(" suffix=")" prefixOverrides="and" >
-            <foreach collection="criteria.criteria" item="criterion" >
-              <choose >
-                <when test="criterion.noValue" >
-                  and ${criterion.condition}
-                </when>
-                <when test="criterion.singleValue" >
-                  and ${criterion.condition} #{criterion.value}
-                </when>
-                <when test="criterion.betweenValue" >
-                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
-                </when>
-                <when test="criterion.listValue" >
-                  and ${criterion.condition}
-                  <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
-                    #{listItem}
-                  </foreach>
-                </when>
-              </choose>
-            </foreach>
-          </trim>
-        </if>
-      </foreach>
-    </where>
-  </sql>
-  <sql id="Update_By_Example_Where_Clause" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    <where >
-      <foreach collection="example.oredCriteria" item="criteria" separator="or" >
-        <if test="criteria.valid" >
-          <trim prefix="(" suffix=")" prefixOverrides="and" >
-            <foreach collection="criteria.criteria" item="criterion" >
-              <choose >
-                <when test="criterion.noValue" >
-                  and ${criterion.condition}
-                </when>
-                <when test="criterion.singleValue" >
-                  and ${criterion.condition} #{criterion.value}
-                </when>
-                <when test="criterion.betweenValue" >
-                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
-                </when>
-                <when test="criterion.listValue" >
-                  and ${criterion.condition}
-                  <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
-                    #{listItem}
-                  </foreach>
-                </when>
-              </choose>
-            </foreach>
-          </trim>
-        </if>
-      </foreach>
-    </where>
-  </sql>
-  <sql id="Base_Column_List" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    code, name, class_code, py_code, d_code, mz_flag, del_flag, n_code, upper_unit1, 
-    upper_name1, kqks_code, kqks_name, flag, abbnm, yj_flag, mzrc_flag, parent_code, 
-    sq_flag, gh_charge_flag, office_pos, supply_flag, xnh_dept_code, xnh_dept_name, ghjz_flag, 
-    parent_code_hs, mz_class, sort_code, op_id, op_date, si_caty, wjw_code, inpatient_flag, 
-    unit_num, ks_zkl, hz_day, dept_describe, office_pos1, si_caty_name
-  </sql>
-  <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.huaihai.core.zdUnitCode.model.ZdUnitCodeExample" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    select
-    <if test="distinct" >
-      distinct
-    </if>
-    'true' as QUERYID,
-    <include refid="Base_Column_List" />
-    from zd_unit_code
-    <if test="_parameter != null" >
-      <include refid="Example_Where_Clause" />
-    </if>
-    <if test="orderByClause != null" >
-      order by ${orderByClause}
-    </if>
-  </select>
-  <delete id="deleteByExample" parameterType="com.huaihai.core.zdUnitCode.model.ZdUnitCodeExample" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    delete from zd_unit_code
-    <if test="_parameter != null" >
-      <include refid="Example_Where_Clause" />
-    </if>
-  </delete>
-  <insert id="insert" parameterType="com.huaihai.core.zdUnitCode.model.ZdUnitCode" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    insert into zd_unit_code (code, name, class_code, 
-      py_code, d_code, mz_flag, 
-      del_flag, n_code, upper_unit1, 
-      upper_name1, kqks_code, kqks_name, 
-      flag, abbnm, yj_flag, mzrc_flag, 
-      parent_code, sq_flag, gh_charge_flag, 
-      office_pos, supply_flag, xnh_dept_code, 
-      xnh_dept_name, ghjz_flag, parent_code_hs, 
-      mz_class, sort_code, op_id, 
-      op_date, si_caty, wjw_code, 
-      inpatient_flag, unit_num, ks_zkl, 
-      hz_day, dept_describe, office_pos1, 
-      si_caty_name)
-    values (#{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{classCode,jdbcType=VARCHAR}, 
-      #{pyCode,jdbcType=VARCHAR}, #{dCode,jdbcType=VARCHAR}, #{mzFlag,jdbcType=CHAR}, 
-      #{delFlag,jdbcType=CHAR}, #{nCode,jdbcType=VARCHAR}, #{upperUnit1,jdbcType=CHAR}, 
-      #{upperName1,jdbcType=CHAR}, #{kqksCode,jdbcType=VARCHAR}, #{kqksName,jdbcType=VARCHAR}, 
-      #{flag,jdbcType=CHAR}, #{abbnm,jdbcType=VARCHAR}, #{yjFlag,jdbcType=CHAR}, #{mzrcFlag,jdbcType=CHAR}, 
-      #{parentCode,jdbcType=CHAR}, #{sqFlag,jdbcType=CHAR}, #{ghChargeFlag,jdbcType=CHAR}, 
-      #{officePos,jdbcType=VARCHAR}, #{supplyFlag,jdbcType=CHAR}, #{xnhDeptCode,jdbcType=VARCHAR}, 
-      #{xnhDeptName,jdbcType=VARCHAR}, #{ghjzFlag,jdbcType=CHAR}, #{parentCodeHs,jdbcType=VARCHAR}, 
-      #{mzClass,jdbcType=VARCHAR}, #{sortCode,jdbcType=VARCHAR}, #{opId,jdbcType=CHAR}, 
-      #{opDate,jdbcType=TIMESTAMP}, #{siCaty,jdbcType=VARCHAR}, #{wjwCode,jdbcType=VARCHAR}, 
-      #{inpatientFlag,jdbcType=TINYINT}, #{unitNum,jdbcType=INTEGER}, #{ksZkl,jdbcType=DECIMAL}, 
-      #{hzDay,jdbcType=INTEGER}, #{deptDescribe,jdbcType=VARCHAR}, #{officePos1,jdbcType=VARCHAR}, 
-      #{siCatyName,jdbcType=NVARCHAR})
-  </insert>
-  <insert id="insertSelective" parameterType="com.huaihai.core.zdUnitCode.model.ZdUnitCode" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    insert into zd_unit_code
-    <trim prefix="(" suffix=")" suffixOverrides="," >
-      <if test="code != null" >
-        code,
-      </if>
-      <if test="name != null" >
-        name,
-      </if>
-      <if test="classCode != null" >
-        class_code,
-      </if>
-      <if test="pyCode != null" >
-        py_code,
-      </if>
-      <if test="dCode != null" >
-        d_code,
-      </if>
-      <if test="mzFlag != null" >
-        mz_flag,
-      </if>
-      <if test="delFlag != null" >
-        del_flag,
-      </if>
-      <if test="nCode != null" >
-        n_code,
-      </if>
-      <if test="upperUnit1 != null" >
-        upper_unit1,
-      </if>
-      <if test="upperName1 != null" >
-        upper_name1,
-      </if>
-      <if test="kqksCode != null" >
-        kqks_code,
-      </if>
-      <if test="kqksName != null" >
-        kqks_name,
-      </if>
-      <if test="flag != null" >
-        flag,
-      </if>
-      <if test="abbnm != null" >
-        abbnm,
-      </if>
-      <if test="yjFlag != null" >
-        yj_flag,
-      </if>
-      <if test="mzrcFlag != null" >
-        mzrc_flag,
-      </if>
-      <if test="parentCode != null" >
-        parent_code,
-      </if>
-      <if test="sqFlag != null" >
-        sq_flag,
-      </if>
-      <if test="ghChargeFlag != null" >
-        gh_charge_flag,
-      </if>
-      <if test="officePos != null" >
-        office_pos,
-      </if>
-      <if test="supplyFlag != null" >
-        supply_flag,
-      </if>
-      <if test="xnhDeptCode != null" >
-        xnh_dept_code,
-      </if>
-      <if test="xnhDeptName != null" >
-        xnh_dept_name,
-      </if>
-      <if test="ghjzFlag != null" >
-        ghjz_flag,
-      </if>
-      <if test="parentCodeHs != null" >
-        parent_code_hs,
-      </if>
-      <if test="mzClass != null" >
-        mz_class,
-      </if>
-      <if test="sortCode != null" >
-        sort_code,
-      </if>
-      <if test="opId != null" >
-        op_id,
-      </if>
-      <if test="opDate != null" >
-        op_date,
-      </if>
-      <if test="siCaty != null" >
-        si_caty,
-      </if>
-      <if test="wjwCode != null" >
-        wjw_code,
-      </if>
-      <if test="inpatientFlag != null" >
-        inpatient_flag,
-      </if>
-      <if test="unitNum != null" >
-        unit_num,
-      </if>
-      <if test="ksZkl != null" >
-        ks_zkl,
-      </if>
-      <if test="hzDay != null" >
-        hz_day,
-      </if>
-      <if test="deptDescribe != null" >
-        dept_describe,
-      </if>
-      <if test="officePos1 != null" >
-        office_pos1,
-      </if>
-      <if test="siCatyName != null" >
-        si_caty_name,
-      </if>
-    </trim>
-    <trim prefix="values (" suffix=")" suffixOverrides="," >
-      <if test="code != null" >
-        #{code,jdbcType=VARCHAR},
-      </if>
-      <if test="name != null" >
-        #{name,jdbcType=VARCHAR},
-      </if>
-      <if test="classCode != null" >
-        #{classCode,jdbcType=VARCHAR},
-      </if>
-      <if test="pyCode != null" >
-        #{pyCode,jdbcType=VARCHAR},
-      </if>
-      <if test="dCode != null" >
-        #{dCode,jdbcType=VARCHAR},
-      </if>
-      <if test="mzFlag != null" >
-        #{mzFlag,jdbcType=CHAR},
-      </if>
-      <if test="delFlag != null" >
-        #{delFlag,jdbcType=CHAR},
-      </if>
-      <if test="nCode != null" >
-        #{nCode,jdbcType=VARCHAR},
-      </if>
-      <if test="upperUnit1 != null" >
-        #{upperUnit1,jdbcType=CHAR},
-      </if>
-      <if test="upperName1 != null" >
-        #{upperName1,jdbcType=CHAR},
-      </if>
-      <if test="kqksCode != null" >
-        #{kqksCode,jdbcType=VARCHAR},
-      </if>
-      <if test="kqksName != null" >
-        #{kqksName,jdbcType=VARCHAR},
-      </if>
-      <if test="flag != null" >
-        #{flag,jdbcType=CHAR},
-      </if>
-      <if test="abbnm != null" >
-        #{abbnm,jdbcType=VARCHAR},
-      </if>
-      <if test="yjFlag != null" >
-        #{yjFlag,jdbcType=CHAR},
-      </if>
-      <if test="mzrcFlag != null" >
-        #{mzrcFlag,jdbcType=CHAR},
-      </if>
-      <if test="parentCode != null" >
-        #{parentCode,jdbcType=CHAR},
-      </if>
-      <if test="sqFlag != null" >
-        #{sqFlag,jdbcType=CHAR},
-      </if>
-      <if test="ghChargeFlag != null" >
-        #{ghChargeFlag,jdbcType=CHAR},
-      </if>
-      <if test="officePos != null" >
-        #{officePos,jdbcType=VARCHAR},
-      </if>
-      <if test="supplyFlag != null" >
-        #{supplyFlag,jdbcType=CHAR},
-      </if>
-      <if test="xnhDeptCode != null" >
-        #{xnhDeptCode,jdbcType=VARCHAR},
-      </if>
-      <if test="xnhDeptName != null" >
-        #{xnhDeptName,jdbcType=VARCHAR},
-      </if>
-      <if test="ghjzFlag != null" >
-        #{ghjzFlag,jdbcType=CHAR},
-      </if>
-      <if test="parentCodeHs != null" >
-        #{parentCodeHs,jdbcType=VARCHAR},
-      </if>
-      <if test="mzClass != null" >
-        #{mzClass,jdbcType=VARCHAR},
-      </if>
-      <if test="sortCode != null" >
-        #{sortCode,jdbcType=VARCHAR},
-      </if>
-      <if test="opId != null" >
-        #{opId,jdbcType=CHAR},
-      </if>
-      <if test="opDate != null" >
-        #{opDate,jdbcType=TIMESTAMP},
-      </if>
-      <if test="siCaty != null" >
-        #{siCaty,jdbcType=VARCHAR},
-      </if>
-      <if test="wjwCode != null" >
-        #{wjwCode,jdbcType=VARCHAR},
-      </if>
-      <if test="inpatientFlag != null" >
-        #{inpatientFlag,jdbcType=TINYINT},
-      </if>
-      <if test="unitNum != null" >
-        #{unitNum,jdbcType=INTEGER},
-      </if>
-      <if test="ksZkl != null" >
-        #{ksZkl,jdbcType=DECIMAL},
-      </if>
-      <if test="hzDay != null" >
-        #{hzDay,jdbcType=INTEGER},
-      </if>
-      <if test="deptDescribe != null" >
-        #{deptDescribe,jdbcType=VARCHAR},
-      </if>
-      <if test="officePos1 != null" >
-        #{officePos1,jdbcType=VARCHAR},
-      </if>
-      <if test="siCatyName != null" >
-        #{siCatyName,jdbcType=NVARCHAR},
-      </if>
-    </trim>
-  </insert>
-  <select id="countByExample" parameterType="com.huaihai.core.zdUnitCode.model.ZdUnitCodeExample" resultType="java.lang.Integer" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    select count(*) from zd_unit_code
-    <if test="_parameter != null" >
-      <include refid="Example_Where_Clause" />
-    </if>
-  </select>
-  <update id="updateByExampleSelective" parameterType="map" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    update zd_unit_code
-    <set >
-      <if test="record.code != null" >
-        code = #{record.code,jdbcType=VARCHAR},
-      </if>
-      <if test="record.name != null" >
-        name = #{record.name,jdbcType=VARCHAR},
-      </if>
-      <if test="record.classCode != null" >
-        class_code = #{record.classCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.pyCode != null" >
-        py_code = #{record.pyCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.dCode != null" >
-        d_code = #{record.dCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.mzFlag != null" >
-        mz_flag = #{record.mzFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.delFlag != null" >
-        del_flag = #{record.delFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.nCode != null" >
-        n_code = #{record.nCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.upperUnit1 != null" >
-        upper_unit1 = #{record.upperUnit1,jdbcType=CHAR},
-      </if>
-      <if test="record.upperName1 != null" >
-        upper_name1 = #{record.upperName1,jdbcType=CHAR},
-      </if>
-      <if test="record.kqksCode != null" >
-        kqks_code = #{record.kqksCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.kqksName != null" >
-        kqks_name = #{record.kqksName,jdbcType=VARCHAR},
-      </if>
-      <if test="record.flag != null" >
-        flag = #{record.flag,jdbcType=CHAR},
-      </if>
-      <if test="record.abbnm != null" >
-        abbnm = #{record.abbnm,jdbcType=VARCHAR},
-      </if>
-      <if test="record.yjFlag != null" >
-        yj_flag = #{record.yjFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.mzrcFlag != null" >
-        mzrc_flag = #{record.mzrcFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.parentCode != null" >
-        parent_code = #{record.parentCode,jdbcType=CHAR},
-      </if>
-      <if test="record.sqFlag != null" >
-        sq_flag = #{record.sqFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.ghChargeFlag != null" >
-        gh_charge_flag = #{record.ghChargeFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.officePos != null" >
-        office_pos = #{record.officePos,jdbcType=VARCHAR},
-      </if>
-      <if test="record.supplyFlag != null" >
-        supply_flag = #{record.supplyFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.xnhDeptCode != null" >
-        xnh_dept_code = #{record.xnhDeptCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.xnhDeptName != null" >
-        xnh_dept_name = #{record.xnhDeptName,jdbcType=VARCHAR},
-      </if>
-      <if test="record.ghjzFlag != null" >
-        ghjz_flag = #{record.ghjzFlag,jdbcType=CHAR},
-      </if>
-      <if test="record.parentCodeHs != null" >
-        parent_code_hs = #{record.parentCodeHs,jdbcType=VARCHAR},
-      </if>
-      <if test="record.mzClass != null" >
-        mz_class = #{record.mzClass,jdbcType=VARCHAR},
-      </if>
-      <if test="record.sortCode != null" >
-        sort_code = #{record.sortCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.opId != null" >
-        op_id = #{record.opId,jdbcType=CHAR},
-      </if>
-      <if test="record.opDate != null" >
-        op_date = #{record.opDate,jdbcType=TIMESTAMP},
-      </if>
-      <if test="record.siCaty != null" >
-        si_caty = #{record.siCaty,jdbcType=VARCHAR},
-      </if>
-      <if test="record.wjwCode != null" >
-        wjw_code = #{record.wjwCode,jdbcType=VARCHAR},
-      </if>
-      <if test="record.inpatientFlag != null" >
-        inpatient_flag = #{record.inpatientFlag,jdbcType=TINYINT},
-      </if>
-      <if test="record.unitNum != null" >
-        unit_num = #{record.unitNum,jdbcType=INTEGER},
-      </if>
-      <if test="record.ksZkl != null" >
-        ks_zkl = #{record.ksZkl,jdbcType=DECIMAL},
-      </if>
-      <if test="record.hzDay != null" >
-        hz_day = #{record.hzDay,jdbcType=INTEGER},
-      </if>
-      <if test="record.deptDescribe != null" >
-        dept_describe = #{record.deptDescribe,jdbcType=VARCHAR},
-      </if>
-      <if test="record.officePos1 != null" >
-        office_pos1 = #{record.officePos1,jdbcType=VARCHAR},
-      </if>
-      <if test="record.siCatyName != null" >
-        si_caty_name = #{record.siCatyName,jdbcType=NVARCHAR},
-      </if>
-    </set>
-    <if test="_parameter != null" >
-      <include refid="Update_By_Example_Where_Clause" />
-    </if>
-  </update>
-  <update id="updateByExample" parameterType="map" >
-    <!--
-      WARNING - @mbggenerated
-      This element is automatically generated by MyBatis Generator, do not modify.
-    -->
-    update zd_unit_code
-    set code = #{record.code,jdbcType=VARCHAR},
-      name = #{record.name,jdbcType=VARCHAR},
-      class_code = #{record.classCode,jdbcType=VARCHAR},
-      py_code = #{record.pyCode,jdbcType=VARCHAR},
-      d_code = #{record.dCode,jdbcType=VARCHAR},
-      mz_flag = #{record.mzFlag,jdbcType=CHAR},
-      del_flag = #{record.delFlag,jdbcType=CHAR},
-      n_code = #{record.nCode,jdbcType=VARCHAR},
-      upper_unit1 = #{record.upperUnit1,jdbcType=CHAR},
-      upper_name1 = #{record.upperName1,jdbcType=CHAR},
-      kqks_code = #{record.kqksCode,jdbcType=VARCHAR},
-      kqks_name = #{record.kqksName,jdbcType=VARCHAR},
-      flag = #{record.flag,jdbcType=CHAR},
-      abbnm = #{record.abbnm,jdbcType=VARCHAR},
-      yj_flag = #{record.yjFlag,jdbcType=CHAR},
-      mzrc_flag = #{record.mzrcFlag,jdbcType=CHAR},
-      parent_code = #{record.parentCode,jdbcType=CHAR},
-      sq_flag = #{record.sqFlag,jdbcType=CHAR},
-      gh_charge_flag = #{record.ghChargeFlag,jdbcType=CHAR},
-      office_pos = #{record.officePos,jdbcType=VARCHAR},
-      supply_flag = #{record.supplyFlag,jdbcType=CHAR},
-      xnh_dept_code = #{record.xnhDeptCode,jdbcType=VARCHAR},
-      xnh_dept_name = #{record.xnhDeptName,jdbcType=VARCHAR},
-      ghjz_flag = #{record.ghjzFlag,jdbcType=CHAR},
-      parent_code_hs = #{record.parentCodeHs,jdbcType=VARCHAR},
-      mz_class = #{record.mzClass,jdbcType=VARCHAR},
-      sort_code = #{record.sortCode,jdbcType=VARCHAR},
-      op_id = #{record.opId,jdbcType=CHAR},
-      op_date = #{record.opDate,jdbcType=TIMESTAMP},
-      si_caty = #{record.siCaty,jdbcType=VARCHAR},
-      wjw_code = #{record.wjwCode,jdbcType=VARCHAR},
-      inpatient_flag = #{record.inpatientFlag,jdbcType=TINYINT},
-      unit_num = #{record.unitNum,jdbcType=INTEGER},
-      ks_zkl = #{record.ksZkl,jdbcType=DECIMAL},
-      hz_day = #{record.hzDay,jdbcType=INTEGER},
-      dept_describe = #{record.deptDescribe,jdbcType=VARCHAR},
-      office_pos1 = #{record.officePos1,jdbcType=VARCHAR},
-      si_caty_name = #{record.siCatyName,jdbcType=NVARCHAR}
-    <if test="_parameter != null" >
-      <include refid="Update_By_Example_Where_Clause" />
-    </if>
-  </update>
-</mapper>

+ 0 - 2914
src/main/java/com/webserver/core/zdUnitCode/model/ZdUnitCodeExample.java

@@ -1,2914 +0,0 @@
-package com.webserver.core.zdUnitCode.model;
-
-import java.math.BigDecimal;
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-public class ZdUnitCodeExample {
-    /**
-     * This field was generated by MyBatis Generator.
-     * This field corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    protected String orderByClause;
-
-    /**
-     * This field was generated by MyBatis Generator.
-     * This field corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    protected boolean distinct;
-
-    /**
-     * This field was generated by MyBatis Generator.
-     * This field corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    protected List<Criteria> oredCriteria;
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public ZdUnitCodeExample() {
-        oredCriteria = new ArrayList<Criteria>();
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public void setOrderByClause(String orderByClause) {
-        this.orderByClause = orderByClause;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public String getOrderByClause() {
-        return orderByClause;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public void setDistinct(boolean distinct) {
-        this.distinct = distinct;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public boolean isDistinct() {
-        return distinct;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public List<Criteria> getOredCriteria() {
-        return oredCriteria;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public void or(Criteria criteria) {
-        oredCriteria.add(criteria);
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public Criteria or() {
-        Criteria criteria = createCriteriaInternal();
-        oredCriteria.add(criteria);
-        return criteria;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public Criteria createCriteria() {
-        Criteria criteria = createCriteriaInternal();
-        if (oredCriteria.size() == 0) {
-            oredCriteria.add(criteria);
-        }
-        return criteria;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    protected Criteria createCriteriaInternal() {
-        Criteria criteria = new Criteria();
-        return criteria;
-    }
-
-    /**
-     * This method was generated by MyBatis Generator.
-     * This method corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public void clear() {
-        oredCriteria.clear();
-        orderByClause = null;
-        distinct = false;
-    }
-
-    /**
-     * This class was generated by MyBatis Generator.
-     * This class corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    protected abstract static class GeneratedCriteria {
-        protected List<Criterion> criteria;
-
-        protected GeneratedCriteria() {
-            super();
-            criteria = new ArrayList<Criterion>();
-        }
-
-        public boolean isValid() {
-            return criteria.size() > 0;
-        }
-
-        public List<Criterion> getAllCriteria() {
-            return criteria;
-        }
-
-        public List<Criterion> getCriteria() {
-            return criteria;
-        }
-
-        protected void addCriterion(String condition) {
-            if (condition == null) {
-                throw new RuntimeException("Value for condition cannot be null");
-            }
-            criteria.add(new Criterion(condition));
-        }
-
-        protected void addCriterion(String condition, Object value, String property) {
-            if (value == null) {
-                throw new RuntimeException("Value for " + property + " cannot be null");
-            }
-            criteria.add(new Criterion(condition, value));
-        }
-
-        protected void addCriterion(String condition, Object value1, Object value2, String property) {
-            if (value1 == null || value2 == null) {
-                throw new RuntimeException("Between values for " + property + " cannot be null");
-            }
-            criteria.add(new Criterion(condition, value1, value2));
-        }
-
-        public Criteria andCodeIsNull() {
-            addCriterion("code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeIsNotNull() {
-            addCriterion("code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeEqualTo(String value) {
-            addCriterion("code =", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeNotEqualTo(String value) {
-            addCriterion("code <>", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeGreaterThan(String value) {
-            addCriterion("code >", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("code >=", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeLessThan(String value) {
-            addCriterion("code <", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeLessThanOrEqualTo(String value) {
-            addCriterion("code <=", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeLike(String value) {
-            addCriterion("code like", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeNotLike(String value) {
-            addCriterion("code not like", value, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeIn(List<String> values) {
-            addCriterion("code in", values, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeNotIn(List<String> values) {
-            addCriterion("code not in", values, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeBetween(String value1, String value2) {
-            addCriterion("code between", value1, value2, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andCodeNotBetween(String value1, String value2) {
-            addCriterion("code not between", value1, value2, "code");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameIsNull() {
-            addCriterion("name is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameIsNotNull() {
-            addCriterion("name is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameEqualTo(String value) {
-            addCriterion("name =", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameNotEqualTo(String value) {
-            addCriterion("name <>", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameGreaterThan(String value) {
-            addCriterion("name >", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameGreaterThanOrEqualTo(String value) {
-            addCriterion("name >=", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameLessThan(String value) {
-            addCriterion("name <", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameLessThanOrEqualTo(String value) {
-            addCriterion("name <=", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameLike(String value) {
-            addCriterion("name like", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameNotLike(String value) {
-            addCriterion("name not like", value, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameIn(List<String> values) {
-            addCriterion("name in", values, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameNotIn(List<String> values) {
-            addCriterion("name not in", values, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameBetween(String value1, String value2) {
-            addCriterion("name between", value1, value2, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andNameNotBetween(String value1, String value2) {
-            addCriterion("name not between", value1, value2, "name");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeIsNull() {
-            addCriterion("class_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeIsNotNull() {
-            addCriterion("class_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeEqualTo(String value) {
-            addCriterion("class_code =", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeNotEqualTo(String value) {
-            addCriterion("class_code <>", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeGreaterThan(String value) {
-            addCriterion("class_code >", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("class_code >=", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeLessThan(String value) {
-            addCriterion("class_code <", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeLessThanOrEqualTo(String value) {
-            addCriterion("class_code <=", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeLike(String value) {
-            addCriterion("class_code like", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeNotLike(String value) {
-            addCriterion("class_code not like", value, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeIn(List<String> values) {
-            addCriterion("class_code in", values, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeNotIn(List<String> values) {
-            addCriterion("class_code not in", values, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeBetween(String value1, String value2) {
-            addCriterion("class_code between", value1, value2, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andClassCodeNotBetween(String value1, String value2) {
-            addCriterion("class_code not between", value1, value2, "classCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeIsNull() {
-            addCriterion("py_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeIsNotNull() {
-            addCriterion("py_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeEqualTo(String value) {
-            addCriterion("py_code =", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeNotEqualTo(String value) {
-            addCriterion("py_code <>", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeGreaterThan(String value) {
-            addCriterion("py_code >", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("py_code >=", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeLessThan(String value) {
-            addCriterion("py_code <", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeLessThanOrEqualTo(String value) {
-            addCriterion("py_code <=", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeLike(String value) {
-            addCriterion("py_code like", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeNotLike(String value) {
-            addCriterion("py_code not like", value, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeIn(List<String> values) {
-            addCriterion("py_code in", values, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeNotIn(List<String> values) {
-            addCriterion("py_code not in", values, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeBetween(String value1, String value2) {
-            addCriterion("py_code between", value1, value2, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andPyCodeNotBetween(String value1, String value2) {
-            addCriterion("py_code not between", value1, value2, "pyCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeIsNull() {
-            addCriterion("d_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeIsNotNull() {
-            addCriterion("d_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeEqualTo(String value) {
-            addCriterion("d_code =", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeNotEqualTo(String value) {
-            addCriterion("d_code <>", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeGreaterThan(String value) {
-            addCriterion("d_code >", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("d_code >=", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeLessThan(String value) {
-            addCriterion("d_code <", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeLessThanOrEqualTo(String value) {
-            addCriterion("d_code <=", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeLike(String value) {
-            addCriterion("d_code like", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeNotLike(String value) {
-            addCriterion("d_code not like", value, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeIn(List<String> values) {
-            addCriterion("d_code in", values, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeNotIn(List<String> values) {
-            addCriterion("d_code not in", values, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeBetween(String value1, String value2) {
-            addCriterion("d_code between", value1, value2, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andDCodeNotBetween(String value1, String value2) {
-            addCriterion("d_code not between", value1, value2, "dCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagIsNull() {
-            addCriterion("mz_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagIsNotNull() {
-            addCriterion("mz_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagEqualTo(String value) {
-            addCriterion("mz_flag =", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagNotEqualTo(String value) {
-            addCriterion("mz_flag <>", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagGreaterThan(String value) {
-            addCriterion("mz_flag >", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("mz_flag >=", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagLessThan(String value) {
-            addCriterion("mz_flag <", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagLessThanOrEqualTo(String value) {
-            addCriterion("mz_flag <=", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagLike(String value) {
-            addCriterion("mz_flag like", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagNotLike(String value) {
-            addCriterion("mz_flag not like", value, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagIn(List<String> values) {
-            addCriterion("mz_flag in", values, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagNotIn(List<String> values) {
-            addCriterion("mz_flag not in", values, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagBetween(String value1, String value2) {
-            addCriterion("mz_flag between", value1, value2, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzFlagNotBetween(String value1, String value2) {
-            addCriterion("mz_flag not between", value1, value2, "mzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagIsNull() {
-            addCriterion("del_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagIsNotNull() {
-            addCriterion("del_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagEqualTo(String value) {
-            addCriterion("del_flag =", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagNotEqualTo(String value) {
-            addCriterion("del_flag <>", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagGreaterThan(String value) {
-            addCriterion("del_flag >", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("del_flag >=", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagLessThan(String value) {
-            addCriterion("del_flag <", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagLessThanOrEqualTo(String value) {
-            addCriterion("del_flag <=", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagLike(String value) {
-            addCriterion("del_flag like", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagNotLike(String value) {
-            addCriterion("del_flag not like", value, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagIn(List<String> values) {
-            addCriterion("del_flag in", values, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagNotIn(List<String> values) {
-            addCriterion("del_flag not in", values, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagBetween(String value1, String value2) {
-            addCriterion("del_flag between", value1, value2, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andDelFlagNotBetween(String value1, String value2) {
-            addCriterion("del_flag not between", value1, value2, "delFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeIsNull() {
-            addCriterion("n_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeIsNotNull() {
-            addCriterion("n_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeEqualTo(String value) {
-            addCriterion("n_code =", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeNotEqualTo(String value) {
-            addCriterion("n_code <>", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeGreaterThan(String value) {
-            addCriterion("n_code >", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("n_code >=", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeLessThan(String value) {
-            addCriterion("n_code <", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeLessThanOrEqualTo(String value) {
-            addCriterion("n_code <=", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeLike(String value) {
-            addCriterion("n_code like", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeNotLike(String value) {
-            addCriterion("n_code not like", value, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeIn(List<String> values) {
-            addCriterion("n_code in", values, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeNotIn(List<String> values) {
-            addCriterion("n_code not in", values, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeBetween(String value1, String value2) {
-            addCriterion("n_code between", value1, value2, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andNCodeNotBetween(String value1, String value2) {
-            addCriterion("n_code not between", value1, value2, "nCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1IsNull() {
-            addCriterion("upper_unit1 is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1IsNotNull() {
-            addCriterion("upper_unit1 is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1EqualTo(String value) {
-            addCriterion("upper_unit1 =", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1NotEqualTo(String value) {
-            addCriterion("upper_unit1 <>", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1GreaterThan(String value) {
-            addCriterion("upper_unit1 >", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1GreaterThanOrEqualTo(String value) {
-            addCriterion("upper_unit1 >=", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1LessThan(String value) {
-            addCriterion("upper_unit1 <", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1LessThanOrEqualTo(String value) {
-            addCriterion("upper_unit1 <=", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1Like(String value) {
-            addCriterion("upper_unit1 like", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1NotLike(String value) {
-            addCriterion("upper_unit1 not like", value, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1In(List<String> values) {
-            addCriterion("upper_unit1 in", values, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1NotIn(List<String> values) {
-            addCriterion("upper_unit1 not in", values, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1Between(String value1, String value2) {
-            addCriterion("upper_unit1 between", value1, value2, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperUnit1NotBetween(String value1, String value2) {
-            addCriterion("upper_unit1 not between", value1, value2, "upperUnit1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1IsNull() {
-            addCriterion("upper_name1 is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1IsNotNull() {
-            addCriterion("upper_name1 is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1EqualTo(String value) {
-            addCriterion("upper_name1 =", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1NotEqualTo(String value) {
-            addCriterion("upper_name1 <>", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1GreaterThan(String value) {
-            addCriterion("upper_name1 >", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1GreaterThanOrEqualTo(String value) {
-            addCriterion("upper_name1 >=", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1LessThan(String value) {
-            addCriterion("upper_name1 <", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1LessThanOrEqualTo(String value) {
-            addCriterion("upper_name1 <=", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1Like(String value) {
-            addCriterion("upper_name1 like", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1NotLike(String value) {
-            addCriterion("upper_name1 not like", value, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1In(List<String> values) {
-            addCriterion("upper_name1 in", values, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1NotIn(List<String> values) {
-            addCriterion("upper_name1 not in", values, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1Between(String value1, String value2) {
-            addCriterion("upper_name1 between", value1, value2, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andUpperName1NotBetween(String value1, String value2) {
-            addCriterion("upper_name1 not between", value1, value2, "upperName1");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeIsNull() {
-            addCriterion("kqks_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeIsNotNull() {
-            addCriterion("kqks_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeEqualTo(String value) {
-            addCriterion("kqks_code =", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeNotEqualTo(String value) {
-            addCriterion("kqks_code <>", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeGreaterThan(String value) {
-            addCriterion("kqks_code >", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("kqks_code >=", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeLessThan(String value) {
-            addCriterion("kqks_code <", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeLessThanOrEqualTo(String value) {
-            addCriterion("kqks_code <=", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeLike(String value) {
-            addCriterion("kqks_code like", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeNotLike(String value) {
-            addCriterion("kqks_code not like", value, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeIn(List<String> values) {
-            addCriterion("kqks_code in", values, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeNotIn(List<String> values) {
-            addCriterion("kqks_code not in", values, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeBetween(String value1, String value2) {
-            addCriterion("kqks_code between", value1, value2, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksCodeNotBetween(String value1, String value2) {
-            addCriterion("kqks_code not between", value1, value2, "kqksCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameIsNull() {
-            addCriterion("kqks_name is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameIsNotNull() {
-            addCriterion("kqks_name is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameEqualTo(String value) {
-            addCriterion("kqks_name =", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameNotEqualTo(String value) {
-            addCriterion("kqks_name <>", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameGreaterThan(String value) {
-            addCriterion("kqks_name >", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameGreaterThanOrEqualTo(String value) {
-            addCriterion("kqks_name >=", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameLessThan(String value) {
-            addCriterion("kqks_name <", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameLessThanOrEqualTo(String value) {
-            addCriterion("kqks_name <=", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameLike(String value) {
-            addCriterion("kqks_name like", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameNotLike(String value) {
-            addCriterion("kqks_name not like", value, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameIn(List<String> values) {
-            addCriterion("kqks_name in", values, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameNotIn(List<String> values) {
-            addCriterion("kqks_name not in", values, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameBetween(String value1, String value2) {
-            addCriterion("kqks_name between", value1, value2, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andKqksNameNotBetween(String value1, String value2) {
-            addCriterion("kqks_name not between", value1, value2, "kqksName");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagIsNull() {
-            addCriterion("flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagIsNotNull() {
-            addCriterion("flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagEqualTo(String value) {
-            addCriterion("flag =", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagNotEqualTo(String value) {
-            addCriterion("flag <>", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagGreaterThan(String value) {
-            addCriterion("flag >", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("flag >=", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagLessThan(String value) {
-            addCriterion("flag <", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagLessThanOrEqualTo(String value) {
-            addCriterion("flag <=", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagLike(String value) {
-            addCriterion("flag like", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagNotLike(String value) {
-            addCriterion("flag not like", value, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagIn(List<String> values) {
-            addCriterion("flag in", values, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagNotIn(List<String> values) {
-            addCriterion("flag not in", values, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagBetween(String value1, String value2) {
-            addCriterion("flag between", value1, value2, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andFlagNotBetween(String value1, String value2) {
-            addCriterion("flag not between", value1, value2, "flag");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmIsNull() {
-            addCriterion("abbnm is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmIsNotNull() {
-            addCriterion("abbnm is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmEqualTo(String value) {
-            addCriterion("abbnm =", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmNotEqualTo(String value) {
-            addCriterion("abbnm <>", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmGreaterThan(String value) {
-            addCriterion("abbnm >", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmGreaterThanOrEqualTo(String value) {
-            addCriterion("abbnm >=", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmLessThan(String value) {
-            addCriterion("abbnm <", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmLessThanOrEqualTo(String value) {
-            addCriterion("abbnm <=", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmLike(String value) {
-            addCriterion("abbnm like", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmNotLike(String value) {
-            addCriterion("abbnm not like", value, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmIn(List<String> values) {
-            addCriterion("abbnm in", values, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmNotIn(List<String> values) {
-            addCriterion("abbnm not in", values, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmBetween(String value1, String value2) {
-            addCriterion("abbnm between", value1, value2, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andAbbnmNotBetween(String value1, String value2) {
-            addCriterion("abbnm not between", value1, value2, "abbnm");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagIsNull() {
-            addCriterion("yj_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagIsNotNull() {
-            addCriterion("yj_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagEqualTo(String value) {
-            addCriterion("yj_flag =", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagNotEqualTo(String value) {
-            addCriterion("yj_flag <>", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagGreaterThan(String value) {
-            addCriterion("yj_flag >", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("yj_flag >=", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagLessThan(String value) {
-            addCriterion("yj_flag <", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagLessThanOrEqualTo(String value) {
-            addCriterion("yj_flag <=", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagLike(String value) {
-            addCriterion("yj_flag like", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagNotLike(String value) {
-            addCriterion("yj_flag not like", value, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagIn(List<String> values) {
-            addCriterion("yj_flag in", values, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagNotIn(List<String> values) {
-            addCriterion("yj_flag not in", values, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagBetween(String value1, String value2) {
-            addCriterion("yj_flag between", value1, value2, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andYjFlagNotBetween(String value1, String value2) {
-            addCriterion("yj_flag not between", value1, value2, "yjFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagIsNull() {
-            addCriterion("mzrc_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagIsNotNull() {
-            addCriterion("mzrc_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagEqualTo(String value) {
-            addCriterion("mzrc_flag =", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagNotEqualTo(String value) {
-            addCriterion("mzrc_flag <>", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagGreaterThan(String value) {
-            addCriterion("mzrc_flag >", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("mzrc_flag >=", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagLessThan(String value) {
-            addCriterion("mzrc_flag <", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagLessThanOrEqualTo(String value) {
-            addCriterion("mzrc_flag <=", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagLike(String value) {
-            addCriterion("mzrc_flag like", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagNotLike(String value) {
-            addCriterion("mzrc_flag not like", value, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagIn(List<String> values) {
-            addCriterion("mzrc_flag in", values, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagNotIn(List<String> values) {
-            addCriterion("mzrc_flag not in", values, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagBetween(String value1, String value2) {
-            addCriterion("mzrc_flag between", value1, value2, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzrcFlagNotBetween(String value1, String value2) {
-            addCriterion("mzrc_flag not between", value1, value2, "mzrcFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeIsNull() {
-            addCriterion("parent_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeIsNotNull() {
-            addCriterion("parent_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeEqualTo(String value) {
-            addCriterion("parent_code =", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeNotEqualTo(String value) {
-            addCriterion("parent_code <>", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeGreaterThan(String value) {
-            addCriterion("parent_code >", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("parent_code >=", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeLessThan(String value) {
-            addCriterion("parent_code <", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeLessThanOrEqualTo(String value) {
-            addCriterion("parent_code <=", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeLike(String value) {
-            addCriterion("parent_code like", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeNotLike(String value) {
-            addCriterion("parent_code not like", value, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeIn(List<String> values) {
-            addCriterion("parent_code in", values, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeNotIn(List<String> values) {
-            addCriterion("parent_code not in", values, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeBetween(String value1, String value2) {
-            addCriterion("parent_code between", value1, value2, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeNotBetween(String value1, String value2) {
-            addCriterion("parent_code not between", value1, value2, "parentCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagIsNull() {
-            addCriterion("sq_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagIsNotNull() {
-            addCriterion("sq_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagEqualTo(String value) {
-            addCriterion("sq_flag =", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagNotEqualTo(String value) {
-            addCriterion("sq_flag <>", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagGreaterThan(String value) {
-            addCriterion("sq_flag >", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("sq_flag >=", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagLessThan(String value) {
-            addCriterion("sq_flag <", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagLessThanOrEqualTo(String value) {
-            addCriterion("sq_flag <=", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagLike(String value) {
-            addCriterion("sq_flag like", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagNotLike(String value) {
-            addCriterion("sq_flag not like", value, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagIn(List<String> values) {
-            addCriterion("sq_flag in", values, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagNotIn(List<String> values) {
-            addCriterion("sq_flag not in", values, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagBetween(String value1, String value2) {
-            addCriterion("sq_flag between", value1, value2, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSqFlagNotBetween(String value1, String value2) {
-            addCriterion("sq_flag not between", value1, value2, "sqFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagIsNull() {
-            addCriterion("gh_charge_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagIsNotNull() {
-            addCriterion("gh_charge_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagEqualTo(String value) {
-            addCriterion("gh_charge_flag =", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagNotEqualTo(String value) {
-            addCriterion("gh_charge_flag <>", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagGreaterThan(String value) {
-            addCriterion("gh_charge_flag >", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("gh_charge_flag >=", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagLessThan(String value) {
-            addCriterion("gh_charge_flag <", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagLessThanOrEqualTo(String value) {
-            addCriterion("gh_charge_flag <=", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagLike(String value) {
-            addCriterion("gh_charge_flag like", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagNotLike(String value) {
-            addCriterion("gh_charge_flag not like", value, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagIn(List<String> values) {
-            addCriterion("gh_charge_flag in", values, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagNotIn(List<String> values) {
-            addCriterion("gh_charge_flag not in", values, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagBetween(String value1, String value2) {
-            addCriterion("gh_charge_flag between", value1, value2, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhChargeFlagNotBetween(String value1, String value2) {
-            addCriterion("gh_charge_flag not between", value1, value2, "ghChargeFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosIsNull() {
-            addCriterion("office_pos is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosIsNotNull() {
-            addCriterion("office_pos is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosEqualTo(String value) {
-            addCriterion("office_pos =", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosNotEqualTo(String value) {
-            addCriterion("office_pos <>", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosGreaterThan(String value) {
-            addCriterion("office_pos >", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosGreaterThanOrEqualTo(String value) {
-            addCriterion("office_pos >=", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosLessThan(String value) {
-            addCriterion("office_pos <", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosLessThanOrEqualTo(String value) {
-            addCriterion("office_pos <=", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosLike(String value) {
-            addCriterion("office_pos like", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosNotLike(String value) {
-            addCriterion("office_pos not like", value, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosIn(List<String> values) {
-            addCriterion("office_pos in", values, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosNotIn(List<String> values) {
-            addCriterion("office_pos not in", values, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosBetween(String value1, String value2) {
-            addCriterion("office_pos between", value1, value2, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePosNotBetween(String value1, String value2) {
-            addCriterion("office_pos not between", value1, value2, "officePos");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagIsNull() {
-            addCriterion("supply_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagIsNotNull() {
-            addCriterion("supply_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagEqualTo(String value) {
-            addCriterion("supply_flag =", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagNotEqualTo(String value) {
-            addCriterion("supply_flag <>", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagGreaterThan(String value) {
-            addCriterion("supply_flag >", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("supply_flag >=", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagLessThan(String value) {
-            addCriterion("supply_flag <", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagLessThanOrEqualTo(String value) {
-            addCriterion("supply_flag <=", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagLike(String value) {
-            addCriterion("supply_flag like", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagNotLike(String value) {
-            addCriterion("supply_flag not like", value, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagIn(List<String> values) {
-            addCriterion("supply_flag in", values, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagNotIn(List<String> values) {
-            addCriterion("supply_flag not in", values, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagBetween(String value1, String value2) {
-            addCriterion("supply_flag between", value1, value2, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andSupplyFlagNotBetween(String value1, String value2) {
-            addCriterion("supply_flag not between", value1, value2, "supplyFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeIsNull() {
-            addCriterion("xnh_dept_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeIsNotNull() {
-            addCriterion("xnh_dept_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeEqualTo(String value) {
-            addCriterion("xnh_dept_code =", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeNotEqualTo(String value) {
-            addCriterion("xnh_dept_code <>", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeGreaterThan(String value) {
-            addCriterion("xnh_dept_code >", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("xnh_dept_code >=", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeLessThan(String value) {
-            addCriterion("xnh_dept_code <", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeLessThanOrEqualTo(String value) {
-            addCriterion("xnh_dept_code <=", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeLike(String value) {
-            addCriterion("xnh_dept_code like", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeNotLike(String value) {
-            addCriterion("xnh_dept_code not like", value, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeIn(List<String> values) {
-            addCriterion("xnh_dept_code in", values, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeNotIn(List<String> values) {
-            addCriterion("xnh_dept_code not in", values, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeBetween(String value1, String value2) {
-            addCriterion("xnh_dept_code between", value1, value2, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptCodeNotBetween(String value1, String value2) {
-            addCriterion("xnh_dept_code not between", value1, value2, "xnhDeptCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameIsNull() {
-            addCriterion("xnh_dept_name is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameIsNotNull() {
-            addCriterion("xnh_dept_name is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameEqualTo(String value) {
-            addCriterion("xnh_dept_name =", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameNotEqualTo(String value) {
-            addCriterion("xnh_dept_name <>", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameGreaterThan(String value) {
-            addCriterion("xnh_dept_name >", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameGreaterThanOrEqualTo(String value) {
-            addCriterion("xnh_dept_name >=", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameLessThan(String value) {
-            addCriterion("xnh_dept_name <", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameLessThanOrEqualTo(String value) {
-            addCriterion("xnh_dept_name <=", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameLike(String value) {
-            addCriterion("xnh_dept_name like", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameNotLike(String value) {
-            addCriterion("xnh_dept_name not like", value, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameIn(List<String> values) {
-            addCriterion("xnh_dept_name in", values, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameNotIn(List<String> values) {
-            addCriterion("xnh_dept_name not in", values, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameBetween(String value1, String value2) {
-            addCriterion("xnh_dept_name between", value1, value2, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andXnhDeptNameNotBetween(String value1, String value2) {
-            addCriterion("xnh_dept_name not between", value1, value2, "xnhDeptName");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagIsNull() {
-            addCriterion("ghjz_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagIsNotNull() {
-            addCriterion("ghjz_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagEqualTo(String value) {
-            addCriterion("ghjz_flag =", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagNotEqualTo(String value) {
-            addCriterion("ghjz_flag <>", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagGreaterThan(String value) {
-            addCriterion("ghjz_flag >", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagGreaterThanOrEqualTo(String value) {
-            addCriterion("ghjz_flag >=", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagLessThan(String value) {
-            addCriterion("ghjz_flag <", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagLessThanOrEqualTo(String value) {
-            addCriterion("ghjz_flag <=", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagLike(String value) {
-            addCriterion("ghjz_flag like", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagNotLike(String value) {
-            addCriterion("ghjz_flag not like", value, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagIn(List<String> values) {
-            addCriterion("ghjz_flag in", values, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagNotIn(List<String> values) {
-            addCriterion("ghjz_flag not in", values, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagBetween(String value1, String value2) {
-            addCriterion("ghjz_flag between", value1, value2, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andGhjzFlagNotBetween(String value1, String value2) {
-            addCriterion("ghjz_flag not between", value1, value2, "ghjzFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsIsNull() {
-            addCriterion("parent_code_hs is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsIsNotNull() {
-            addCriterion("parent_code_hs is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsEqualTo(String value) {
-            addCriterion("parent_code_hs =", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsNotEqualTo(String value) {
-            addCriterion("parent_code_hs <>", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsGreaterThan(String value) {
-            addCriterion("parent_code_hs >", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsGreaterThanOrEqualTo(String value) {
-            addCriterion("parent_code_hs >=", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsLessThan(String value) {
-            addCriterion("parent_code_hs <", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsLessThanOrEqualTo(String value) {
-            addCriterion("parent_code_hs <=", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsLike(String value) {
-            addCriterion("parent_code_hs like", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsNotLike(String value) {
-            addCriterion("parent_code_hs not like", value, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsIn(List<String> values) {
-            addCriterion("parent_code_hs in", values, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsNotIn(List<String> values) {
-            addCriterion("parent_code_hs not in", values, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsBetween(String value1, String value2) {
-            addCriterion("parent_code_hs between", value1, value2, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andParentCodeHsNotBetween(String value1, String value2) {
-            addCriterion("parent_code_hs not between", value1, value2, "parentCodeHs");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassIsNull() {
-            addCriterion("mz_class is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassIsNotNull() {
-            addCriterion("mz_class is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassEqualTo(String value) {
-            addCriterion("mz_class =", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassNotEqualTo(String value) {
-            addCriterion("mz_class <>", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassGreaterThan(String value) {
-            addCriterion("mz_class >", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassGreaterThanOrEqualTo(String value) {
-            addCriterion("mz_class >=", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassLessThan(String value) {
-            addCriterion("mz_class <", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassLessThanOrEqualTo(String value) {
-            addCriterion("mz_class <=", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassLike(String value) {
-            addCriterion("mz_class like", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassNotLike(String value) {
-            addCriterion("mz_class not like", value, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassIn(List<String> values) {
-            addCriterion("mz_class in", values, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassNotIn(List<String> values) {
-            addCriterion("mz_class not in", values, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassBetween(String value1, String value2) {
-            addCriterion("mz_class between", value1, value2, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andMzClassNotBetween(String value1, String value2) {
-            addCriterion("mz_class not between", value1, value2, "mzClass");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeIsNull() {
-            addCriterion("sort_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeIsNotNull() {
-            addCriterion("sort_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeEqualTo(String value) {
-            addCriterion("sort_code =", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeNotEqualTo(String value) {
-            addCriterion("sort_code <>", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeGreaterThan(String value) {
-            addCriterion("sort_code >", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("sort_code >=", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeLessThan(String value) {
-            addCriterion("sort_code <", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeLessThanOrEqualTo(String value) {
-            addCriterion("sort_code <=", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeLike(String value) {
-            addCriterion("sort_code like", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeNotLike(String value) {
-            addCriterion("sort_code not like", value, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeIn(List<String> values) {
-            addCriterion("sort_code in", values, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeNotIn(List<String> values) {
-            addCriterion("sort_code not in", values, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeBetween(String value1, String value2) {
-            addCriterion("sort_code between", value1, value2, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andSortCodeNotBetween(String value1, String value2) {
-            addCriterion("sort_code not between", value1, value2, "sortCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdIsNull() {
-            addCriterion("op_id is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdIsNotNull() {
-            addCriterion("op_id is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdEqualTo(String value) {
-            addCriterion("op_id =", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdNotEqualTo(String value) {
-            addCriterion("op_id <>", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdGreaterThan(String value) {
-            addCriterion("op_id >", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdGreaterThanOrEqualTo(String value) {
-            addCriterion("op_id >=", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdLessThan(String value) {
-            addCriterion("op_id <", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdLessThanOrEqualTo(String value) {
-            addCriterion("op_id <=", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdLike(String value) {
-            addCriterion("op_id like", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdNotLike(String value) {
-            addCriterion("op_id not like", value, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdIn(List<String> values) {
-            addCriterion("op_id in", values, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdNotIn(List<String> values) {
-            addCriterion("op_id not in", values, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdBetween(String value1, String value2) {
-            addCriterion("op_id between", value1, value2, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpIdNotBetween(String value1, String value2) {
-            addCriterion("op_id not between", value1, value2, "opId");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateIsNull() {
-            addCriterion("op_date is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateIsNotNull() {
-            addCriterion("op_date is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateEqualTo(Date value) {
-            addCriterion("op_date =", value, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateNotEqualTo(Date value) {
-            addCriterion("op_date <>", value, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateGreaterThan(Date value) {
-            addCriterion("op_date >", value, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateGreaterThanOrEqualTo(Date value) {
-            addCriterion("op_date >=", value, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateLessThan(Date value) {
-            addCriterion("op_date <", value, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateLessThanOrEqualTo(Date value) {
-            addCriterion("op_date <=", value, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateIn(List<Date> values) {
-            addCriterion("op_date in", values, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateNotIn(List<Date> values) {
-            addCriterion("op_date not in", values, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateBetween(Date value1, Date value2) {
-            addCriterion("op_date between", value1, value2, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andOpDateNotBetween(Date value1, Date value2) {
-            addCriterion("op_date not between", value1, value2, "opDate");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyIsNull() {
-            addCriterion("si_caty is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyIsNotNull() {
-            addCriterion("si_caty is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyEqualTo(String value) {
-            addCriterion("si_caty =", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNotEqualTo(String value) {
-            addCriterion("si_caty <>", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyGreaterThan(String value) {
-            addCriterion("si_caty >", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyGreaterThanOrEqualTo(String value) {
-            addCriterion("si_caty >=", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyLessThan(String value) {
-            addCriterion("si_caty <", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyLessThanOrEqualTo(String value) {
-            addCriterion("si_caty <=", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyLike(String value) {
-            addCriterion("si_caty like", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNotLike(String value) {
-            addCriterion("si_caty not like", value, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyIn(List<String> values) {
-            addCriterion("si_caty in", values, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNotIn(List<String> values) {
-            addCriterion("si_caty not in", values, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyBetween(String value1, String value2) {
-            addCriterion("si_caty between", value1, value2, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNotBetween(String value1, String value2) {
-            addCriterion("si_caty not between", value1, value2, "siCaty");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeIsNull() {
-            addCriterion("wjw_code is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeIsNotNull() {
-            addCriterion("wjw_code is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeEqualTo(String value) {
-            addCriterion("wjw_code =", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeNotEqualTo(String value) {
-            addCriterion("wjw_code <>", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeGreaterThan(String value) {
-            addCriterion("wjw_code >", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeGreaterThanOrEqualTo(String value) {
-            addCriterion("wjw_code >=", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeLessThan(String value) {
-            addCriterion("wjw_code <", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeLessThanOrEqualTo(String value) {
-            addCriterion("wjw_code <=", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeLike(String value) {
-            addCriterion("wjw_code like", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeNotLike(String value) {
-            addCriterion("wjw_code not like", value, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeIn(List<String> values) {
-            addCriterion("wjw_code in", values, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeNotIn(List<String> values) {
-            addCriterion("wjw_code not in", values, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeBetween(String value1, String value2) {
-            addCriterion("wjw_code between", value1, value2, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andWjwCodeNotBetween(String value1, String value2) {
-            addCriterion("wjw_code not between", value1, value2, "wjwCode");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagIsNull() {
-            addCriterion("inpatient_flag is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagIsNotNull() {
-            addCriterion("inpatient_flag is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagEqualTo(Byte value) {
-            addCriterion("inpatient_flag =", value, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagNotEqualTo(Byte value) {
-            addCriterion("inpatient_flag <>", value, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagGreaterThan(Byte value) {
-            addCriterion("inpatient_flag >", value, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagGreaterThanOrEqualTo(Byte value) {
-            addCriterion("inpatient_flag >=", value, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagLessThan(Byte value) {
-            addCriterion("inpatient_flag <", value, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagLessThanOrEqualTo(Byte value) {
-            addCriterion("inpatient_flag <=", value, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagIn(List<Byte> values) {
-            addCriterion("inpatient_flag in", values, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagNotIn(List<Byte> values) {
-            addCriterion("inpatient_flag not in", values, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagBetween(Byte value1, Byte value2) {
-            addCriterion("inpatient_flag between", value1, value2, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andInpatientFlagNotBetween(Byte value1, Byte value2) {
-            addCriterion("inpatient_flag not between", value1, value2, "inpatientFlag");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumIsNull() {
-            addCriterion("unit_num is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumIsNotNull() {
-            addCriterion("unit_num is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumEqualTo(Integer value) {
-            addCriterion("unit_num =", value, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumNotEqualTo(Integer value) {
-            addCriterion("unit_num <>", value, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumGreaterThan(Integer value) {
-            addCriterion("unit_num >", value, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumGreaterThanOrEqualTo(Integer value) {
-            addCriterion("unit_num >=", value, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumLessThan(Integer value) {
-            addCriterion("unit_num <", value, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumLessThanOrEqualTo(Integer value) {
-            addCriterion("unit_num <=", value, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumIn(List<Integer> values) {
-            addCriterion("unit_num in", values, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumNotIn(List<Integer> values) {
-            addCriterion("unit_num not in", values, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumBetween(Integer value1, Integer value2) {
-            addCriterion("unit_num between", value1, value2, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andUnitNumNotBetween(Integer value1, Integer value2) {
-            addCriterion("unit_num not between", value1, value2, "unitNum");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklIsNull() {
-            addCriterion("ks_zkl is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklIsNotNull() {
-            addCriterion("ks_zkl is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklEqualTo(BigDecimal value) {
-            addCriterion("ks_zkl =", value, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklNotEqualTo(BigDecimal value) {
-            addCriterion("ks_zkl <>", value, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklGreaterThan(BigDecimal value) {
-            addCriterion("ks_zkl >", value, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklGreaterThanOrEqualTo(BigDecimal value) {
-            addCriterion("ks_zkl >=", value, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklLessThan(BigDecimal value) {
-            addCriterion("ks_zkl <", value, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklLessThanOrEqualTo(BigDecimal value) {
-            addCriterion("ks_zkl <=", value, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklIn(List<BigDecimal> values) {
-            addCriterion("ks_zkl in", values, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklNotIn(List<BigDecimal> values) {
-            addCriterion("ks_zkl not in", values, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklBetween(BigDecimal value1, BigDecimal value2) {
-            addCriterion("ks_zkl between", value1, value2, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andKsZklNotBetween(BigDecimal value1, BigDecimal value2) {
-            addCriterion("ks_zkl not between", value1, value2, "ksZkl");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayIsNull() {
-            addCriterion("hz_day is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayIsNotNull() {
-            addCriterion("hz_day is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayEqualTo(Integer value) {
-            addCriterion("hz_day =", value, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayNotEqualTo(Integer value) {
-            addCriterion("hz_day <>", value, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayGreaterThan(Integer value) {
-            addCriterion("hz_day >", value, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayGreaterThanOrEqualTo(Integer value) {
-            addCriterion("hz_day >=", value, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayLessThan(Integer value) {
-            addCriterion("hz_day <", value, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayLessThanOrEqualTo(Integer value) {
-            addCriterion("hz_day <=", value, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayIn(List<Integer> values) {
-            addCriterion("hz_day in", values, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayNotIn(List<Integer> values) {
-            addCriterion("hz_day not in", values, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayBetween(Integer value1, Integer value2) {
-            addCriterion("hz_day between", value1, value2, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andHzDayNotBetween(Integer value1, Integer value2) {
-            addCriterion("hz_day not between", value1, value2, "hzDay");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeIsNull() {
-            addCriterion("dept_describe is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeIsNotNull() {
-            addCriterion("dept_describe is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeEqualTo(String value) {
-            addCriterion("dept_describe =", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeNotEqualTo(String value) {
-            addCriterion("dept_describe <>", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeGreaterThan(String value) {
-            addCriterion("dept_describe >", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeGreaterThanOrEqualTo(String value) {
-            addCriterion("dept_describe >=", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeLessThan(String value) {
-            addCriterion("dept_describe <", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeLessThanOrEqualTo(String value) {
-            addCriterion("dept_describe <=", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeLike(String value) {
-            addCriterion("dept_describe like", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeNotLike(String value) {
-            addCriterion("dept_describe not like", value, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeIn(List<String> values) {
-            addCriterion("dept_describe in", values, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeNotIn(List<String> values) {
-            addCriterion("dept_describe not in", values, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeBetween(String value1, String value2) {
-            addCriterion("dept_describe between", value1, value2, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andDeptDescribeNotBetween(String value1, String value2) {
-            addCriterion("dept_describe not between", value1, value2, "deptDescribe");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1IsNull() {
-            addCriterion("office_pos1 is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1IsNotNull() {
-            addCriterion("office_pos1 is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1EqualTo(String value) {
-            addCriterion("office_pos1 =", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1NotEqualTo(String value) {
-            addCriterion("office_pos1 <>", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1GreaterThan(String value) {
-            addCriterion("office_pos1 >", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1GreaterThanOrEqualTo(String value) {
-            addCriterion("office_pos1 >=", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1LessThan(String value) {
-            addCriterion("office_pos1 <", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1LessThanOrEqualTo(String value) {
-            addCriterion("office_pos1 <=", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1Like(String value) {
-            addCriterion("office_pos1 like", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1NotLike(String value) {
-            addCriterion("office_pos1 not like", value, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1In(List<String> values) {
-            addCriterion("office_pos1 in", values, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1NotIn(List<String> values) {
-            addCriterion("office_pos1 not in", values, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1Between(String value1, String value2) {
-            addCriterion("office_pos1 between", value1, value2, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andOfficePos1NotBetween(String value1, String value2) {
-            addCriterion("office_pos1 not between", value1, value2, "officePos1");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameIsNull() {
-            addCriterion("si_caty_name is null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameIsNotNull() {
-            addCriterion("si_caty_name is not null");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameEqualTo(String value) {
-            addCriterion("si_caty_name =", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameNotEqualTo(String value) {
-            addCriterion("si_caty_name <>", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameGreaterThan(String value) {
-            addCriterion("si_caty_name >", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameGreaterThanOrEqualTo(String value) {
-            addCriterion("si_caty_name >=", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameLessThan(String value) {
-            addCriterion("si_caty_name <", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameLessThanOrEqualTo(String value) {
-            addCriterion("si_caty_name <=", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameLike(String value) {
-            addCriterion("si_caty_name like", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameNotLike(String value) {
-            addCriterion("si_caty_name not like", value, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameIn(List<String> values) {
-            addCriterion("si_caty_name in", values, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameNotIn(List<String> values) {
-            addCriterion("si_caty_name not in", values, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameBetween(String value1, String value2) {
-            addCriterion("si_caty_name between", value1, value2, "siCatyName");
-            return (Criteria) this;
-        }
-
-        public Criteria andSiCatyNameNotBetween(String value1, String value2) {
-            addCriterion("si_caty_name not between", value1, value2, "siCatyName");
-            return (Criteria) this;
-        }
-    }
-
-    /**
-     * This class was generated by MyBatis Generator.
-     * This class corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated do_not_delete_during_merge
-     */
-    public static class Criteria extends GeneratedCriteria {
-
-        protected Criteria() {
-            super();
-        }
-    }
-
-    /**
-     * This class was generated by MyBatis Generator.
-     * This class corresponds to the database table zd_unit_code
-     *
-     * @mbggenerated
-     */
-    public static class Criterion {
-        private String condition;
-
-        private Object value;
-
-        private Object secondValue;
-
-        private boolean noValue;
-
-        private boolean singleValue;
-
-        private boolean betweenValue;
-
-        private boolean listValue;
-
-        private String typeHandler;
-
-        public String getCondition() {
-            return condition;
-        }
-
-        public Object getValue() {
-            return value;
-        }
-
-        public Object getSecondValue() {
-            return secondValue;
-        }
-
-        public boolean isNoValue() {
-            return noValue;
-        }
-
-        public boolean isSingleValue() {
-            return singleValue;
-        }
-
-        public boolean isBetweenValue() {
-            return betweenValue;
-        }
-
-        public boolean isListValue() {
-            return listValue;
-        }
-
-        public String getTypeHandler() {
-            return typeHandler;
-        }
-
-        protected Criterion(String condition) {
-            super();
-            this.condition = condition;
-            this.typeHandler = null;
-            this.noValue = true;
-        }
-
-        protected Criterion(String condition, Object value, String typeHandler) {
-            super();
-            this.condition = condition;
-            this.value = value;
-            this.typeHandler = typeHandler;
-            if (value instanceof List<?>) {
-                this.listValue = true;
-            } else {
-                this.singleValue = true;
-            }
-        }
-
-        protected Criterion(String condition, Object value) {
-            this(condition, value, null);
-        }
-
-        protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
-            super();
-            this.condition = condition;
-            this.value = value;
-            this.secondValue = secondValue;
-            this.typeHandler = typeHandler;
-            this.betweenValue = true;
-        }
-
-        protected Criterion(String condition, Object value, Object secondValue) {
-            this(condition, value, secondValue, null);
-        }
-    }
-}

+ 0 - 25
src/main/java/com/webserver/core/zdUnitCode/service/ZdUnitCodeService.java

@@ -1,25 +0,0 @@
-package com.webserver.core.zdUnitCode.service;
-
-
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
-import com.webserver.core.zdUnitCode.mapper.ZdUnitCodeMapper;
-import org.apache.ibatis.annotations.Select;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Service;
-import com.webserver.core.zdUnitCode.model.ZdUnitCode;
-
-import javax.jws.WebService;
-import java.util.List;
-
-
-@Service
-@WebService
-public class ZdUnitCodeService {
-
-    @Autowired
-    private ZdUnitCodeMapper mapper;
-
-    public List<ZdUnitCode> getDeptList(String code){
-        return mapper.selectByAge(code);
-    }
-}

+ 1 - 1
src/main/java/com/webserver/utils/HelloService.java

@@ -6,5 +6,5 @@ import javax.jws.WebService;
 @WebService
 public interface HelloService {
     @WebMethod
-    String getDeptList(String code);
+    String sayHello(String name);
 }

+ 2 - 3
src/main/java/com/webserver/utils/WebServiceList.java → src/main/java/com/webserver/utils/HelloServiceImpl.java

@@ -3,11 +3,10 @@ package com.webserver.utils;
 import org.springframework.stereotype.Service;
 
 import javax.jws.WebService;
-
 @Service
 @WebService
-public class WebServiceList {
-    public String getDeptList(String name) {
+public class HelloServiceImpl {
+    public String sayHello(String name) {
         return "Hello, " + name + "!";
     }
 }

+ 6 - 6
src/main/java/com/webserver/utils/WebServiceConfig.java

@@ -1,14 +1,14 @@
 package com.webserver.utils;
 
 
-import com.webserver.core.zdUnitCode.service.ZdUnitCodeService;
+import com.webserver.core.zdUnitCode.ZdUnitCodeService;
 import org.apache.cxf.Bus;
-        import org.apache.cxf.jaxws.EndpointImpl;
-        import org.springframework.beans.factory.annotation.Autowired;
-        import org.springframework.context.annotation.Bean;
-        import org.springframework.context.annotation.Configuration;
+import org.apache.cxf.jaxws.EndpointImpl;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
 
-        import javax.xml.ws.Endpoint;
+import javax.xml.ws.Endpoint;
 
 @Configuration
 public class WebServiceConfig {