Browse Source

业务项目新增精品字段

anderx 8 years ago
parent
commit
fde584bcbd

+ 2 - 2
GeneratorConfig.xml

@@ -2,7 +2,7 @@
 <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
 <generatorConfiguration>
 
-  <classPathEntry location="E:/mysql-connector-java-5.1.40.jar" />
+  <classPathEntry location="C:/Users/Administrator/.dbeaver-drivers/maven/maven-central/mysql/mysql-connector-java-5.1.44.jar" />
 
   <context id="context1">	
     <jdbcConnection connectionURL="jdbc:mysql://192.168.1.213:3306/aft" 
@@ -10,6 +10,6 @@
     <javaModelGenerator targetPackage="com.goafanti.common.model" targetProject="AFT" />
     <sqlMapGenerator targetPackage="com.goafanti.common.mapper" targetProject="AFT" />
     <javaClientGenerator targetPackage="com.goafanti.common.dao" targetProject="AFT" type="XMLMAPPER" />
-    <table schema="aft" tableName="t_order"/>
+   	<table schema="aft" tableName="business_project"/>
   </context>
 </generatorConfiguration>

+ 16 - 1
src/main/java/com/goafanti/admin/bo/BusinessProjectBo.java

@@ -134,7 +134,10 @@ public class BusinessProjectBo {
 	 * 创建人名称
 	 */
 	private String createName;
-	
+	/**
+	 * 是否精品
+	 */
+	private Integer boutique;
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.max_logo
 	 * @return  the value of business_project.max_logo
@@ -596,5 +599,17 @@ public class BusinessProjectBo {
 				+ principalId + ", valueEffect=" + valueEffect + ", clientSize=" + clientSize + ", cname=" + cname
 				+ ", createName=" + createName + "]";
 	}
+
+
+
+	public Integer getBoutique() {
+		return boutique;
+	}
+
+
+
+	public void setBoutique(Integer boutique) {
+		this.boutique = boutique;
+	}
 	
 }

+ 6 - 2
src/main/java/com/goafanti/admin/controller/BusinessProjectController.java

@@ -29,12 +29,16 @@ public class BusinessProjectController extends CertifyApiController{
 	 * 新增项目
 	 */
 	@RequestMapping(value = "/addProject" , method = RequestMethod.POST)
-	public Result addProject(String bname,String cid,String country,String province,String city,String district) {
+	public Result addProject(String bname,String cid,String country,String province,String city,String district,String boutique) {
 		Result res=new Result();
 		if (StringUtils.isBlank(bname)) {
 			res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "项目名称名称为空", "项目名称"));
 			return res;
 		}
+		if (StringUtils.isBlank(boutique)) {
+			res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "是否精品为空", "是否精品"));
+			return res;
+		}
 		
 		if (StringUtils.isBlank(cid)) {
 			res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "所属品类为空", "所属品类"));
@@ -50,7 +54,7 @@ public class BusinessProjectController extends CertifyApiController{
 				return res;
 			}
 		}
-		res.setData(businessprojectService.insert(bname, cid, country,province,city,district));
+		res.setData(businessprojectService.insert(bname, cid, country,province,city,district,boutique));
 		return res; 
 	}
 	

+ 1 - 1
src/main/java/com/goafanti/admin/service/BusinessProjectService.java

@@ -13,7 +13,7 @@ import com.goafanti.common.model.ProjectSize;
 import com.goafanti.core.mybatis.page.Pagination;
 
 public interface BusinessProjectService {
-	int insert(String bname,String cid,String country,String province,String city,String district);
+	int insert(String bname,String cid,String country,String province,String city,String district,String boutique);
 	
 	Pagination<BusinessProjectBo> listProject(String bname,String cid,String country,String province,String city,String district,String activityFlag,
 										String status,Integer pageNo, Integer pageSize );

+ 3 - 2
src/main/java/com/goafanti/admin/service/impl/BusinessProjectServiceImpl.java

@@ -41,7 +41,7 @@ public class BusinessProjectServiceImpl extends BaseMybatisDao<BusinessProjectMa
 	ProjectInterestMapper projectInterestMapper;
 	
 	@Override
-	public int insert(String bname, String cid, String country, String province, String city, String district) {
+	public int insert(String bname, String cid, String country, String province, String city, String district,String boutique) {
 		BusinessProject bp=new BusinessProject();
 		bp.setId(UUID.randomUUID().toString());
 		bp.setBname(bname);
@@ -59,7 +59,7 @@ public class BusinessProjectServiceImpl extends BaseMybatisDao<BusinessProjectMa
 		}
 		bp.setCreateTime(new Date());
 		bp.setStatus("0");
-
+		bp.setBoutique(Integer.valueOf(boutique));
 		return businessProjectMapper.insert(bp);
 	}
 	@SuppressWarnings("unchecked")
@@ -253,6 +253,7 @@ public class BusinessProjectServiceImpl extends BaseMybatisDao<BusinessProjectMa
 		bp.setClientSize(s.getClientSize());
 		bp.setMinLogo(s.getMinLogo());
 		bp.setMaxLogo(s.getMaxLogo());
+		bp.setBoutique(s.getBoutique());
 		if (null!=(s.getStatus())) {
 			bp.setStatus(s.getStatus());
 		}

+ 11 - 11
src/main/java/com/goafanti/common/dao/BusinessProjectMapper.java

@@ -11,68 +11,68 @@ public interface BusinessProjectMapper {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	long countByExample(BusinessProjectExample example);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int deleteByExample(BusinessProjectExample example);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int deleteByPrimaryKey(String id);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int insert(BusinessProject record);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int insertSelective(BusinessProject record);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	List<BusinessProject> selectByExample(BusinessProjectExample example);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	BusinessProject selectByPrimaryKey(String id);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int updateByExampleSelective(@Param("record") BusinessProject record,
 			@Param("example") BusinessProjectExample example);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int updateByExample(@Param("record") BusinessProject record, @Param("example") BusinessProjectExample example);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int updateByPrimaryKeySelective(BusinessProject record);
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	int updateByPrimaryKey(BusinessProject record);
 

+ 37 - 20
src/main/java/com/goafanti/common/mapper/BusinessProjectMapper.xml

@@ -5,7 +5,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     <id column="id" jdbcType="VARCHAR" property="id" />
     <result column="create_id" jdbcType="VARCHAR" property="createId" />
@@ -30,12 +30,13 @@
     <result column="client_size" jdbcType="VARCHAR" property="clientSize" />
     <result column="max_logo" jdbcType="VARCHAR" property="maxLogo" />
     <result column="min_logo" jdbcType="VARCHAR" property="minLogo" />
+    <result column="boutique" jdbcType="INTEGER" property="boutique" />
   </resultMap>
   <sql id="Example_Where_Clause">
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     <where>
       <foreach collection="oredCriteria" item="criteria" separator="or">
@@ -69,7 +70,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     <where>
       <foreach collection="example.oredCriteria" item="criteria" separator="or">
@@ -103,17 +104,17 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     id, create_id, create_time, update_time, delete_sign, bname, cid, price, offset, 
     activity_price, activity_flag, member_price, introduce, status, country, province, 
-    city, district, principal_id, Value_effect, client_size, max_logo, min_logo
+    city, district, principal_id, Value_effect, client_size, max_logo, min_logo, boutique
   </sql>
   <select id="selectByExample" parameterType="com.goafanti.common.model.BusinessProjectExample" resultMap="BaseResultMap">
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     select
     <if test="distinct">
@@ -132,7 +133,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     select 
     <include refid="Base_Column_List" />
@@ -143,7 +144,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     delete from business_project
     where id = #{id,jdbcType=VARCHAR}
@@ -152,7 +153,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     delete from business_project
     <if test="_parameter != null">
@@ -163,7 +164,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     insert into business_project (id, create_id, create_time, 
       update_time, delete_sign, bname, 
@@ -172,7 +173,8 @@
       introduce, status, country, 
       province, city, district, 
       principal_id, Value_effect, client_size, 
-      max_logo, min_logo)
+      max_logo, min_logo, boutique
+      )
     values (#{id,jdbcType=VARCHAR}, #{createId,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, 
       #{updateTime,jdbcType=TIMESTAMP}, #{deleteSign,jdbcType=INTEGER}, #{bname,jdbcType=VARCHAR}, 
       #{cid,jdbcType=VARCHAR}, #{price,jdbcType=DECIMAL}, #{offset,jdbcType=DECIMAL}, 
@@ -180,13 +182,14 @@
       #{introduce,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{country,jdbcType=VARCHAR}, 
       #{province,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, #{district,jdbcType=VARCHAR}, 
       #{principalId,jdbcType=VARCHAR}, #{valueEffect,jdbcType=VARCHAR}, #{clientSize,jdbcType=VARCHAR}, 
-      #{maxLogo,jdbcType=VARCHAR}, #{minLogo,jdbcType=VARCHAR})
+      #{maxLogo,jdbcType=VARCHAR}, #{minLogo,jdbcType=VARCHAR}, #{boutique,jdbcType=INTEGER}
+      )
   </insert>
   <insert id="insertSelective" parameterType="com.goafanti.common.model.BusinessProject">
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     insert into business_project
     <trim prefix="(" suffix=")" suffixOverrides=",">
@@ -259,6 +262,9 @@
       <if test="minLogo != null">
         min_logo,
       </if>
+      <if test="boutique != null">
+        boutique,
+      </if>
     </trim>
     <trim prefix="values (" suffix=")" suffixOverrides=",">
       <if test="id != null">
@@ -330,13 +336,16 @@
       <if test="minLogo != null">
         #{minLogo,jdbcType=VARCHAR},
       </if>
+      <if test="boutique != null">
+        #{boutique,jdbcType=INTEGER},
+      </if>
     </trim>
   </insert>
   <select id="countByExample" parameterType="com.goafanti.common.model.BusinessProjectExample" resultType="java.lang.Long">
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     select count(*) from business_project
     <if test="_parameter != null">
@@ -347,7 +356,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     update business_project
     <set>
@@ -420,6 +429,9 @@
       <if test="record.minLogo != null">
         min_logo = #{record.minLogo,jdbcType=VARCHAR},
       </if>
+      <if test="record.boutique != null">
+        boutique = #{record.boutique,jdbcType=INTEGER},
+      </if>
     </set>
     <if test="_parameter != null">
       <include refid="Update_By_Example_Where_Clause" />
@@ -429,7 +441,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     update business_project
     set id = #{record.id,jdbcType=VARCHAR},
@@ -454,7 +466,8 @@
       Value_effect = #{record.valueEffect,jdbcType=VARCHAR},
       client_size = #{record.clientSize,jdbcType=VARCHAR},
       max_logo = #{record.maxLogo,jdbcType=VARCHAR},
-      min_logo = #{record.minLogo,jdbcType=VARCHAR}
+      min_logo = #{record.minLogo,jdbcType=VARCHAR},
+      boutique = #{record.boutique,jdbcType=INTEGER}
     <if test="_parameter != null">
       <include refid="Update_By_Example_Where_Clause" />
     </if>
@@ -463,7 +476,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     update business_project
     <set>
@@ -533,6 +546,9 @@
       <if test="minLogo != null">
         min_logo = #{minLogo,jdbcType=VARCHAR},
       </if>
+      <if test="boutique != null">
+        boutique = #{boutique,jdbcType=INTEGER},
+      </if>
     </set>
     where id = #{id,jdbcType=VARCHAR}
   </update>
@@ -540,7 +556,7 @@
     <!--
       WARNING - @mbg.generated
       This element is automatically generated by MyBatis Generator, do not modify.
-      This element was generated on Mon Dec 25 18:55:04 CST 2017.
+      This element was generated on Tue Jan 02 13:57:47 CST 2018.
     -->
     update business_project
     set create_id = #{createId,jdbcType=VARCHAR},
@@ -564,7 +580,8 @@
       Value_effect = #{valueEffect,jdbcType=VARCHAR},
       client_size = #{clientSize,jdbcType=VARCHAR},
       max_logo = #{maxLogo,jdbcType=VARCHAR},
-      min_logo = #{minLogo,jdbcType=VARCHAR}
+      min_logo = #{minLogo,jdbcType=VARCHAR},
+      boutique = #{boutique,jdbcType=INTEGER}
     where id = #{id,jdbcType=VARCHAR}
   </update>
 

+ 92 - 69
src/main/java/com/goafanti/common/model/BusinessProject.java

@@ -7,124 +7,129 @@ public class BusinessProject {
 
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String id;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.create_id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String createId;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.create_time
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private Date createTime;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.update_time
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private Date updateTime;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.delete_sign
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private Integer deleteSign;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.bname
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String bname;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.cid
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String cid;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private BigDecimal price;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.offset
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private BigDecimal offset;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.activity_price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private BigDecimal activityPrice;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.activity_flag
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String activityFlag;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.member_price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private BigDecimal memberPrice;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.introduce
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String introduce;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.status
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String status;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.country
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String country;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.province
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String province;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.city
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String city;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.district
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String district;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.principal_id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String principalId;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.Value_effect
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String valueEffect;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.client_size
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String clientSize;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.max_logo
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String maxLogo;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.min_logo
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	private String minLogo;
+	/**
+	 * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.boutique
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
+	 */
+	private Integer boutique;
 
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.id
 	 * @return  the value of business_project.id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getId() {
 		return id;
@@ -133,7 +138,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.id
 	 * @param id  the value for business_project.id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setId(String id) {
 		this.id = id;
@@ -142,7 +147,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.create_id
 	 * @return  the value of business_project.create_id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getCreateId() {
 		return createId;
@@ -151,7 +156,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.create_id
 	 * @param createId  the value for business_project.create_id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setCreateId(String createId) {
 		this.createId = createId;
@@ -160,7 +165,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.create_time
 	 * @return  the value of business_project.create_time
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public Date getCreateTime() {
 		return createTime;
@@ -169,7 +174,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.create_time
 	 * @param createTime  the value for business_project.create_time
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setCreateTime(Date createTime) {
 		this.createTime = createTime;
@@ -178,7 +183,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.update_time
 	 * @return  the value of business_project.update_time
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public Date getUpdateTime() {
 		return updateTime;
@@ -187,7 +192,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.update_time
 	 * @param updateTime  the value for business_project.update_time
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setUpdateTime(Date updateTime) {
 		this.updateTime = updateTime;
@@ -196,7 +201,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.delete_sign
 	 * @return  the value of business_project.delete_sign
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public Integer getDeleteSign() {
 		return deleteSign;
@@ -205,7 +210,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.delete_sign
 	 * @param deleteSign  the value for business_project.delete_sign
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setDeleteSign(Integer deleteSign) {
 		this.deleteSign = deleteSign;
@@ -214,7 +219,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.bname
 	 * @return  the value of business_project.bname
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getBname() {
 		return bname;
@@ -223,7 +228,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.bname
 	 * @param bname  the value for business_project.bname
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setBname(String bname) {
 		this.bname = bname;
@@ -232,7 +237,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.cid
 	 * @return  the value of business_project.cid
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getCid() {
 		return cid;
@@ -241,7 +246,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.cid
 	 * @param cid  the value for business_project.cid
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setCid(String cid) {
 		this.cid = cid;
@@ -250,7 +255,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.price
 	 * @return  the value of business_project.price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public BigDecimal getPrice() {
 		return price;
@@ -259,7 +264,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.price
 	 * @param price  the value for business_project.price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setPrice(BigDecimal price) {
 		this.price = price;
@@ -268,7 +273,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.offset
 	 * @return  the value of business_project.offset
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public BigDecimal getOffset() {
 		return offset;
@@ -277,7 +282,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.offset
 	 * @param offset  the value for business_project.offset
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setOffset(BigDecimal offset) {
 		this.offset = offset;
@@ -286,7 +291,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.activity_price
 	 * @return  the value of business_project.activity_price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public BigDecimal getActivityPrice() {
 		return activityPrice;
@@ -295,7 +300,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.activity_price
 	 * @param activityPrice  the value for business_project.activity_price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setActivityPrice(BigDecimal activityPrice) {
 		this.activityPrice = activityPrice;
@@ -304,7 +309,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.activity_flag
 	 * @return  the value of business_project.activity_flag
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getActivityFlag() {
 		return activityFlag;
@@ -313,7 +318,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.activity_flag
 	 * @param activityFlag  the value for business_project.activity_flag
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setActivityFlag(String activityFlag) {
 		this.activityFlag = activityFlag;
@@ -322,7 +327,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.member_price
 	 * @return  the value of business_project.member_price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public BigDecimal getMemberPrice() {
 		return memberPrice;
@@ -331,7 +336,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.member_price
 	 * @param memberPrice  the value for business_project.member_price
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setMemberPrice(BigDecimal memberPrice) {
 		this.memberPrice = memberPrice;
@@ -340,7 +345,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.introduce
 	 * @return  the value of business_project.introduce
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getIntroduce() {
 		return introduce;
@@ -349,7 +354,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.introduce
 	 * @param introduce  the value for business_project.introduce
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setIntroduce(String introduce) {
 		this.introduce = introduce;
@@ -358,7 +363,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.status
 	 * @return  the value of business_project.status
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getStatus() {
 		return status;
@@ -367,7 +372,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.status
 	 * @param status  the value for business_project.status
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setStatus(String status) {
 		this.status = status;
@@ -376,7 +381,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.country
 	 * @return  the value of business_project.country
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getCountry() {
 		return country;
@@ -385,7 +390,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.country
 	 * @param country  the value for business_project.country
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setCountry(String country) {
 		this.country = country;
@@ -394,7 +399,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.province
 	 * @return  the value of business_project.province
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getProvince() {
 		return province;
@@ -403,7 +408,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.province
 	 * @param province  the value for business_project.province
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setProvince(String province) {
 		this.province = province;
@@ -412,7 +417,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.city
 	 * @return  the value of business_project.city
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getCity() {
 		return city;
@@ -421,7 +426,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.city
 	 * @param city  the value for business_project.city
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setCity(String city) {
 		this.city = city;
@@ -430,7 +435,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.district
 	 * @return  the value of business_project.district
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getDistrict() {
 		return district;
@@ -439,7 +444,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.district
 	 * @param district  the value for business_project.district
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setDistrict(String district) {
 		this.district = district;
@@ -448,7 +453,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.principal_id
 	 * @return  the value of business_project.principal_id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getPrincipalId() {
 		return principalId;
@@ -457,7 +462,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.principal_id
 	 * @param principalId  the value for business_project.principal_id
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setPrincipalId(String principalId) {
 		this.principalId = principalId;
@@ -466,7 +471,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.Value_effect
 	 * @return  the value of business_project.Value_effect
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getValueEffect() {
 		return valueEffect;
@@ -475,7 +480,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.Value_effect
 	 * @param valueEffect  the value for business_project.Value_effect
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setValueEffect(String valueEffect) {
 		this.valueEffect = valueEffect;
@@ -484,7 +489,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.client_size
 	 * @return  the value of business_project.client_size
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getClientSize() {
 		return clientSize;
@@ -493,7 +498,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.client_size
 	 * @param clientSize  the value for business_project.client_size
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setClientSize(String clientSize) {
 		this.clientSize = clientSize;
@@ -502,7 +507,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.max_logo
 	 * @return  the value of business_project.max_logo
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getMaxLogo() {
 		return maxLogo;
@@ -511,7 +516,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.max_logo
 	 * @param maxLogo  the value for business_project.max_logo
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setMaxLogo(String maxLogo) {
 		this.maxLogo = maxLogo;
@@ -520,7 +525,7 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.min_logo
 	 * @return  the value of business_project.min_logo
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getMinLogo() {
 		return minLogo;
@@ -529,12 +534,30 @@ public class BusinessProject {
 	/**
 	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.min_logo
 	 * @param minLogo  the value for business_project.min_logo
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setMinLogo(String minLogo) {
 		this.minLogo = minLogo;
 	}
 
+	/**
+	 * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.boutique
+	 * @return  the value of business_project.boutique
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
+	 */
+	public Integer getBoutique() {
+		return boutique;
+	}
+
+	/**
+	 * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.boutique
+	 * @param boutique  the value for business_project.boutique
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
+	 */
+	public void setBoutique(Integer boutique) {
+		this.boutique = boutique;
+	}
+
 	@Override
 	public String toString() {
 		return "BusinessProject [id=" + id + ", createId=" + createId + ", createTime=" + createTime + ", updateTime="

+ 76 - 16
src/main/java/com/goafanti/common/model/BusinessProjectExample.java

@@ -8,23 +8,23 @@ import java.util.List;
 public class BusinessProjectExample {
     /**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	protected String orderByClause;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	protected boolean distinct;
 	/**
 	 * This field was generated by MyBatis Generator. This field corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	protected List<Criteria> oredCriteria;
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public BusinessProjectExample() {
 		oredCriteria = new ArrayList<Criteria>();
@@ -32,7 +32,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setOrderByClause(String orderByClause) {
 		this.orderByClause = orderByClause;
@@ -40,7 +40,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public String getOrderByClause() {
 		return orderByClause;
@@ -48,7 +48,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void setDistinct(boolean distinct) {
 		this.distinct = distinct;
@@ -56,7 +56,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public boolean isDistinct() {
 		return distinct;
@@ -64,7 +64,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public List<Criteria> getOredCriteria() {
 		return oredCriteria;
@@ -72,7 +72,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void or(Criteria criteria) {
 		oredCriteria.add(criteria);
@@ -80,7 +80,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public Criteria or() {
 		Criteria criteria = createCriteriaInternal();
@@ -90,7 +90,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public Criteria createCriteria() {
 		Criteria criteria = createCriteriaInternal();
@@ -102,7 +102,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	protected Criteria createCriteriaInternal() {
 		Criteria criteria = new Criteria();
@@ -111,7 +111,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public void clear() {
 		oredCriteria.clear();
@@ -121,7 +121,7 @@ public class BusinessProjectExample {
 
 	/**
 	 * This class was generated by MyBatis Generator. This class corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	protected abstract static class GeneratedCriteria {
 		protected List<Criterion> criteria;
@@ -1703,11 +1703,71 @@ public class BusinessProjectExample {
 			addCriterion("min_logo not between", value1, value2, "minLogo");
 			return (Criteria) this;
 		}
+
+		public Criteria andBoutiqueIsNull() {
+			addCriterion("boutique is null");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueIsNotNull() {
+			addCriterion("boutique is not null");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueEqualTo(Integer value) {
+			addCriterion("boutique =", value, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueNotEqualTo(Integer value) {
+			addCriterion("boutique <>", value, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueGreaterThan(Integer value) {
+			addCriterion("boutique >", value, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueGreaterThanOrEqualTo(Integer value) {
+			addCriterion("boutique >=", value, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueLessThan(Integer value) {
+			addCriterion("boutique <", value, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueLessThanOrEqualTo(Integer value) {
+			addCriterion("boutique <=", value, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueIn(List<Integer> values) {
+			addCriterion("boutique in", values, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueNotIn(List<Integer> values) {
+			addCriterion("boutique not in", values, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueBetween(Integer value1, Integer value2) {
+			addCriterion("boutique between", value1, value2, "boutique");
+			return (Criteria) this;
+		}
+
+		public Criteria andBoutiqueNotBetween(Integer value1, Integer value2) {
+			addCriterion("boutique not between", value1, value2, "boutique");
+			return (Criteria) this;
+		}
 	}
 
 	/**
 	 * This class was generated by MyBatis Generator. This class corresponds to the database table business_project
-	 * @mbg.generated  Mon Dec 25 18:55:04 CST 2017
+	 * @mbg.generated  Tue Jan 02 13:57:47 CST 2018
 	 */
 	public static class Criterion {
 		private String condition;