diff --git a/service/src/main/java/com/hfkj/dao/GoodsMsgMapper.java b/service/src/main/java/com/hfkj/dao/GoodsMsgMapper.java index 4b64a61..6f28d2d 100644 --- a/service/src/main/java/com/hfkj/dao/GoodsMsgMapper.java +++ b/service/src/main/java/com/hfkj/dao/GoodsMsgMapper.java @@ -39,11 +39,11 @@ public interface GoodsMsgMapper extends GoodsMsgMapperExt { int deleteByPrimaryKey(Long id); @Insert({ - "insert into goods_msg (goods_type, third_id, ", + "insert into goods_msg (goods_type, child_type, ", + "show_type, sort, ", "goods_type_name, goods_type_parent, ", - "goods_type_parent_name, sale_num, ", - "`type`, child_type, ", - "show_type, goods_brand_name, ", + "third_id, goods_type_parent_name, ", + "sale_num, `type`, goods_brand_name, ", "goods_brand, goods_label, ", "goods_explain, title, ", "list_img, banner_img, ", @@ -51,11 +51,11 @@ public interface GoodsMsgMapper extends GoodsMsgMapperExt { "create_time, update_time, ", "mer_id, mer_name, ext_1, ", "ext_2, ext_3)", - "values (#{goodsType,jdbcType=BIGINT}, #{thirdId,jdbcType=VARCHAR}, ", + "values (#{goodsType,jdbcType=BIGINT}, #{childType,jdbcType=INTEGER}, ", + "#{showType,jdbcType=INTEGER}, #{sort,jdbcType=INTEGER}, ", "#{goodsTypeName,jdbcType=VARCHAR}, #{goodsTypeParent,jdbcType=BIGINT}, ", - "#{goodsTypeParentName,jdbcType=VARCHAR}, #{saleNum,jdbcType=INTEGER}, ", - "#{type,jdbcType=INTEGER}, #{childType,jdbcType=INTEGER}, ", - "#{showType,jdbcType=INTEGER}, #{goodsBrandName,jdbcType=VARCHAR}, ", + "#{thirdId,jdbcType=VARCHAR}, #{goodsTypeParentName,jdbcType=VARCHAR}, ", + "#{saleNum,jdbcType=INTEGER}, #{type,jdbcType=INTEGER}, #{goodsBrandName,jdbcType=VARCHAR}, ", "#{goodsBrand,jdbcType=BIGINT}, #{goodsLabel,jdbcType=VARCHAR}, ", "#{goodsExplain,jdbcType=VARCHAR}, #{title,jdbcType=VARCHAR}, ", "#{listImg,jdbcType=VARCHAR}, #{bannerImg,jdbcType=VARCHAR}, ", @@ -75,14 +75,15 @@ public interface GoodsMsgMapper extends GoodsMsgMapperExt { @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="goods_type", property="goodsType", jdbcType=JdbcType.BIGINT), - @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), + @Result(column="child_type", property="childType", jdbcType=JdbcType.INTEGER), + @Result(column="show_type", property="showType", jdbcType=JdbcType.INTEGER), + @Result(column="sort", property="sort", jdbcType=JdbcType.INTEGER), @Result(column="goods_type_name", property="goodsTypeName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_type_parent", property="goodsTypeParent", jdbcType=JdbcType.BIGINT), + @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), @Result(column="goods_type_parent_name", property="goodsTypeParentName", jdbcType=JdbcType.VARCHAR), @Result(column="sale_num", property="saleNum", jdbcType=JdbcType.INTEGER), @Result(column="type", property="type", jdbcType=JdbcType.INTEGER), - @Result(column="child_type", property="childType", jdbcType=JdbcType.INTEGER), - @Result(column="show_type", property="showType", jdbcType=JdbcType.INTEGER), @Result(column="goods_brand_name", property="goodsBrandName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_brand", property="goodsBrand", jdbcType=JdbcType.BIGINT), @Result(column="goods_label", property="goodsLabel", jdbcType=JdbcType.VARCHAR), @@ -104,24 +105,25 @@ public interface GoodsMsgMapper extends GoodsMsgMapperExt { @Select({ "select", - "id, goods_type, third_id, goods_type_name, goods_type_parent, goods_type_parent_name, ", - "sale_num, `type`, child_type, show_type, goods_brand_name, goods_brand, goods_label, ", - "goods_explain, title, list_img, banner_img, detail_img, `status`, create_time, ", - "update_time, mer_id, mer_name, ext_1, ext_2, ext_3", + "id, goods_type, child_type, show_type, sort, goods_type_name, goods_type_parent, ", + "third_id, goods_type_parent_name, sale_num, `type`, goods_brand_name, goods_brand, ", + "goods_label, goods_explain, title, list_img, banner_img, detail_img, `status`, ", + "create_time, update_time, mer_id, mer_name, ext_1, ext_2, ext_3", "from goods_msg", "where id = #{id,jdbcType=BIGINT}" }) @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="goods_type", property="goodsType", jdbcType=JdbcType.BIGINT), - @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), + @Result(column="child_type", property="childType", jdbcType=JdbcType.INTEGER), + @Result(column="show_type", property="showType", jdbcType=JdbcType.INTEGER), + @Result(column="sort", property="sort", jdbcType=JdbcType.INTEGER), @Result(column="goods_type_name", property="goodsTypeName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_type_parent", property="goodsTypeParent", jdbcType=JdbcType.BIGINT), + @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), @Result(column="goods_type_parent_name", property="goodsTypeParentName", jdbcType=JdbcType.VARCHAR), @Result(column="sale_num", property="saleNum", jdbcType=JdbcType.INTEGER), @Result(column="type", property="type", jdbcType=JdbcType.INTEGER), - @Result(column="child_type", property="childType", jdbcType=JdbcType.INTEGER), - @Result(column="show_type", property="showType", jdbcType=JdbcType.INTEGER), @Result(column="goods_brand_name", property="goodsBrandName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_brand", property="goodsBrand", jdbcType=JdbcType.BIGINT), @Result(column="goods_label", property="goodsLabel", jdbcType=JdbcType.VARCHAR), @@ -153,14 +155,15 @@ public interface GoodsMsgMapper extends GoodsMsgMapperExt { @Update({ "update goods_msg", "set goods_type = #{goodsType,jdbcType=BIGINT},", - "third_id = #{thirdId,jdbcType=VARCHAR},", + "child_type = #{childType,jdbcType=INTEGER},", + "show_type = #{showType,jdbcType=INTEGER},", + "sort = #{sort,jdbcType=INTEGER},", "goods_type_name = #{goodsTypeName,jdbcType=VARCHAR},", "goods_type_parent = #{goodsTypeParent,jdbcType=BIGINT},", + "third_id = #{thirdId,jdbcType=VARCHAR},", "goods_type_parent_name = #{goodsTypeParentName,jdbcType=VARCHAR},", "sale_num = #{saleNum,jdbcType=INTEGER},", "`type` = #{type,jdbcType=INTEGER},", - "child_type = #{childType,jdbcType=INTEGER},", - "show_type = #{showType,jdbcType=INTEGER},", "goods_brand_name = #{goodsBrandName,jdbcType=VARCHAR},", "goods_brand = #{goodsBrand,jdbcType=BIGINT},", "goods_label = #{goodsLabel,jdbcType=VARCHAR},", diff --git a/service/src/main/java/com/hfkj/dao/GoodsMsgSqlProvider.java b/service/src/main/java/com/hfkj/dao/GoodsMsgSqlProvider.java index 6f682c6..114d41a 100644 --- a/service/src/main/java/com/hfkj/dao/GoodsMsgSqlProvider.java +++ b/service/src/main/java/com/hfkj/dao/GoodsMsgSqlProvider.java @@ -32,8 +32,16 @@ public class GoodsMsgSqlProvider { sql.VALUES("goods_type", "#{goodsType,jdbcType=BIGINT}"); } - if (record.getThirdId() != null) { - sql.VALUES("third_id", "#{thirdId,jdbcType=VARCHAR}"); + if (record.getChildType() != null) { + sql.VALUES("child_type", "#{childType,jdbcType=INTEGER}"); + } + + if (record.getShowType() != null) { + sql.VALUES("show_type", "#{showType,jdbcType=INTEGER}"); + } + + if (record.getSort() != null) { + sql.VALUES("sort", "#{sort,jdbcType=INTEGER}"); } if (record.getGoodsTypeName() != null) { @@ -44,6 +52,10 @@ public class GoodsMsgSqlProvider { sql.VALUES("goods_type_parent", "#{goodsTypeParent,jdbcType=BIGINT}"); } + if (record.getThirdId() != null) { + sql.VALUES("third_id", "#{thirdId,jdbcType=VARCHAR}"); + } + if (record.getGoodsTypeParentName() != null) { sql.VALUES("goods_type_parent_name", "#{goodsTypeParentName,jdbcType=VARCHAR}"); } @@ -56,14 +68,6 @@ public class GoodsMsgSqlProvider { sql.VALUES("`type`", "#{type,jdbcType=INTEGER}"); } - if (record.getChildType() != null) { - sql.VALUES("child_type", "#{childType,jdbcType=INTEGER}"); - } - - if (record.getShowType() != null) { - sql.VALUES("show_type", "#{showType,jdbcType=INTEGER}"); - } - if (record.getGoodsBrandName() != null) { sql.VALUES("goods_brand_name", "#{goodsBrandName,jdbcType=VARCHAR}"); } @@ -139,14 +143,15 @@ public class GoodsMsgSqlProvider { sql.SELECT("id"); } sql.SELECT("goods_type"); - sql.SELECT("third_id"); + sql.SELECT("child_type"); + sql.SELECT("show_type"); + sql.SELECT("sort"); sql.SELECT("goods_type_name"); sql.SELECT("goods_type_parent"); + sql.SELECT("third_id"); sql.SELECT("goods_type_parent_name"); sql.SELECT("sale_num"); sql.SELECT("`type`"); - sql.SELECT("child_type"); - sql.SELECT("show_type"); sql.SELECT("goods_brand_name"); sql.SELECT("goods_brand"); sql.SELECT("goods_label"); @@ -188,8 +193,16 @@ public class GoodsMsgSqlProvider { sql.SET("goods_type = #{record.goodsType,jdbcType=BIGINT}"); } - if (record.getThirdId() != null) { - sql.SET("third_id = #{record.thirdId,jdbcType=VARCHAR}"); + if (record.getChildType() != null) { + sql.SET("child_type = #{record.childType,jdbcType=INTEGER}"); + } + + if (record.getShowType() != null) { + sql.SET("show_type = #{record.showType,jdbcType=INTEGER}"); + } + + if (record.getSort() != null) { + sql.SET("sort = #{record.sort,jdbcType=INTEGER}"); } if (record.getGoodsTypeName() != null) { @@ -200,6 +213,10 @@ public class GoodsMsgSqlProvider { sql.SET("goods_type_parent = #{record.goodsTypeParent,jdbcType=BIGINT}"); } + if (record.getThirdId() != null) { + sql.SET("third_id = #{record.thirdId,jdbcType=VARCHAR}"); + } + if (record.getGoodsTypeParentName() != null) { sql.SET("goods_type_parent_name = #{record.goodsTypeParentName,jdbcType=VARCHAR}"); } @@ -212,14 +229,6 @@ public class GoodsMsgSqlProvider { sql.SET("`type` = #{record.type,jdbcType=INTEGER}"); } - if (record.getChildType() != null) { - sql.SET("child_type = #{record.childType,jdbcType=INTEGER}"); - } - - if (record.getShowType() != null) { - sql.SET("show_type = #{record.showType,jdbcType=INTEGER}"); - } - if (record.getGoodsBrandName() != null) { sql.SET("goods_brand_name = #{record.goodsBrandName,jdbcType=VARCHAR}"); } @@ -294,14 +303,15 @@ public class GoodsMsgSqlProvider { sql.SET("id = #{record.id,jdbcType=BIGINT}"); sql.SET("goods_type = #{record.goodsType,jdbcType=BIGINT}"); - sql.SET("third_id = #{record.thirdId,jdbcType=VARCHAR}"); + sql.SET("child_type = #{record.childType,jdbcType=INTEGER}"); + sql.SET("show_type = #{record.showType,jdbcType=INTEGER}"); + sql.SET("sort = #{record.sort,jdbcType=INTEGER}"); sql.SET("goods_type_name = #{record.goodsTypeName,jdbcType=VARCHAR}"); sql.SET("goods_type_parent = #{record.goodsTypeParent,jdbcType=BIGINT}"); + sql.SET("third_id = #{record.thirdId,jdbcType=VARCHAR}"); sql.SET("goods_type_parent_name = #{record.goodsTypeParentName,jdbcType=VARCHAR}"); sql.SET("sale_num = #{record.saleNum,jdbcType=INTEGER}"); sql.SET("`type` = #{record.type,jdbcType=INTEGER}"); - sql.SET("child_type = #{record.childType,jdbcType=INTEGER}"); - sql.SET("show_type = #{record.showType,jdbcType=INTEGER}"); sql.SET("goods_brand_name = #{record.goodsBrandName,jdbcType=VARCHAR}"); sql.SET("goods_brand = #{record.goodsBrand,jdbcType=BIGINT}"); sql.SET("goods_label = #{record.goodsLabel,jdbcType=VARCHAR}"); @@ -332,8 +342,16 @@ public class GoodsMsgSqlProvider { sql.SET("goods_type = #{goodsType,jdbcType=BIGINT}"); } - if (record.getThirdId() != null) { - sql.SET("third_id = #{thirdId,jdbcType=VARCHAR}"); + if (record.getChildType() != null) { + sql.SET("child_type = #{childType,jdbcType=INTEGER}"); + } + + if (record.getShowType() != null) { + sql.SET("show_type = #{showType,jdbcType=INTEGER}"); + } + + if (record.getSort() != null) { + sql.SET("sort = #{sort,jdbcType=INTEGER}"); } if (record.getGoodsTypeName() != null) { @@ -344,6 +362,10 @@ public class GoodsMsgSqlProvider { sql.SET("goods_type_parent = #{goodsTypeParent,jdbcType=BIGINT}"); } + if (record.getThirdId() != null) { + sql.SET("third_id = #{thirdId,jdbcType=VARCHAR}"); + } + if (record.getGoodsTypeParentName() != null) { sql.SET("goods_type_parent_name = #{goodsTypeParentName,jdbcType=VARCHAR}"); } @@ -356,14 +378,6 @@ public class GoodsMsgSqlProvider { sql.SET("`type` = #{type,jdbcType=INTEGER}"); } - if (record.getChildType() != null) { - sql.SET("child_type = #{childType,jdbcType=INTEGER}"); - } - - if (record.getShowType() != null) { - sql.SET("show_type = #{showType,jdbcType=INTEGER}"); - } - if (record.getGoodsBrandName() != null) { sql.SET("goods_brand_name = #{goodsBrandName,jdbcType=VARCHAR}"); } diff --git a/service/src/main/java/com/hfkj/entity/GoodsMsg.java b/service/src/main/java/com/hfkj/entity/GoodsMsg.java index e648653..376305a 100644 --- a/service/src/main/java/com/hfkj/entity/GoodsMsg.java +++ b/service/src/main/java/com/hfkj/entity/GoodsMsg.java @@ -24,9 +24,19 @@ public class GoodsMsg implements Serializable { private Long goodsType; /** - * 第三方id + * 商品分类 */ - private String thirdId; + private Integer childType; + + /** + * 展示类型:1.正常展示 2.不展示在c端 + */ + private Integer showType; + + /** + * 排序 + */ + private Integer sort; /** * 商品类型名称 @@ -38,6 +48,8 @@ public class GoodsMsg implements Serializable { */ private Long goodsTypeParent; + private String thirdId; + /** * 商品分类父类 */ @@ -53,16 +65,6 @@ public class GoodsMsg implements Serializable { */ private Integer type; - /** - * 类型:1.京东产品 - */ - private Integer childType; - - /** - * 展示类型:1.正常展示 2.不展示在c端 - */ - private Integer showType; - /** * 商品品牌名称 */ @@ -161,12 +163,28 @@ public class GoodsMsg implements Serializable { this.goodsType = goodsType; } - public String getThirdId() { - return thirdId; + public Integer getChildType() { + return childType; } - public void setThirdId(String thirdId) { - this.thirdId = thirdId; + public void setChildType(Integer childType) { + this.childType = childType; + } + + public Integer getShowType() { + return showType; + } + + public void setShowType(Integer showType) { + this.showType = showType; + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; } public String getGoodsTypeName() { @@ -185,6 +203,14 @@ public class GoodsMsg implements Serializable { this.goodsTypeParent = goodsTypeParent; } + public String getThirdId() { + return thirdId; + } + + public void setThirdId(String thirdId) { + this.thirdId = thirdId; + } + public String getGoodsTypeParentName() { return goodsTypeParentName; } @@ -209,22 +235,6 @@ public class GoodsMsg implements Serializable { this.type = type; } - public Integer getChildType() { - return childType; - } - - public void setChildType(Integer childType) { - this.childType = childType; - } - - public Integer getShowType() { - return showType; - } - - public void setShowType(Integer showType) { - this.showType = showType; - } - public String getGoodsBrandName() { return goodsBrandName; } @@ -367,14 +377,15 @@ public class GoodsMsg implements Serializable { GoodsMsg other = (GoodsMsg) that; return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) && (this.getGoodsType() == null ? other.getGoodsType() == null : this.getGoodsType().equals(other.getGoodsType())) - && (this.getThirdId() == null ? other.getThirdId() == null : this.getThirdId().equals(other.getThirdId())) + && (this.getChildType() == null ? other.getChildType() == null : this.getChildType().equals(other.getChildType())) + && (this.getShowType() == null ? other.getShowType() == null : this.getShowType().equals(other.getShowType())) + && (this.getSort() == null ? other.getSort() == null : this.getSort().equals(other.getSort())) && (this.getGoodsTypeName() == null ? other.getGoodsTypeName() == null : this.getGoodsTypeName().equals(other.getGoodsTypeName())) && (this.getGoodsTypeParent() == null ? other.getGoodsTypeParent() == null : this.getGoodsTypeParent().equals(other.getGoodsTypeParent())) + && (this.getThirdId() == null ? other.getThirdId() == null : this.getThirdId().equals(other.getThirdId())) && (this.getGoodsTypeParentName() == null ? other.getGoodsTypeParentName() == null : this.getGoodsTypeParentName().equals(other.getGoodsTypeParentName())) && (this.getSaleNum() == null ? other.getSaleNum() == null : this.getSaleNum().equals(other.getSaleNum())) && (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType())) - && (this.getChildType() == null ? other.getChildType() == null : this.getChildType().equals(other.getChildType())) - && (this.getShowType() == null ? other.getShowType() == null : this.getShowType().equals(other.getShowType())) && (this.getGoodsBrandName() == null ? other.getGoodsBrandName() == null : this.getGoodsBrandName().equals(other.getGoodsBrandName())) && (this.getGoodsBrand() == null ? other.getGoodsBrand() == null : this.getGoodsBrand().equals(other.getGoodsBrand())) && (this.getGoodsLabel() == null ? other.getGoodsLabel() == null : this.getGoodsLabel().equals(other.getGoodsLabel())) @@ -399,14 +410,15 @@ public class GoodsMsg implements Serializable { int result = 1; result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); result = prime * result + ((getGoodsType() == null) ? 0 : getGoodsType().hashCode()); - result = prime * result + ((getThirdId() == null) ? 0 : getThirdId().hashCode()); + result = prime * result + ((getChildType() == null) ? 0 : getChildType().hashCode()); + result = prime * result + ((getShowType() == null) ? 0 : getShowType().hashCode()); + result = prime * result + ((getSort() == null) ? 0 : getSort().hashCode()); result = prime * result + ((getGoodsTypeName() == null) ? 0 : getGoodsTypeName().hashCode()); result = prime * result + ((getGoodsTypeParent() == null) ? 0 : getGoodsTypeParent().hashCode()); + result = prime * result + ((getThirdId() == null) ? 0 : getThirdId().hashCode()); result = prime * result + ((getGoodsTypeParentName() == null) ? 0 : getGoodsTypeParentName().hashCode()); result = prime * result + ((getSaleNum() == null) ? 0 : getSaleNum().hashCode()); result = prime * result + ((getType() == null) ? 0 : getType().hashCode()); - result = prime * result + ((getChildType() == null) ? 0 : getChildType().hashCode()); - result = prime * result + ((getShowType() == null) ? 0 : getShowType().hashCode()); result = prime * result + ((getGoodsBrandName() == null) ? 0 : getGoodsBrandName().hashCode()); result = prime * result + ((getGoodsBrand() == null) ? 0 : getGoodsBrand().hashCode()); result = prime * result + ((getGoodsLabel() == null) ? 0 : getGoodsLabel().hashCode()); @@ -434,14 +446,15 @@ public class GoodsMsg implements Serializable { sb.append("Hash = ").append(hashCode()); sb.append(", id=").append(id); sb.append(", goodsType=").append(goodsType); - sb.append(", thirdId=").append(thirdId); + sb.append(", childType=").append(childType); + sb.append(", showType=").append(showType); + sb.append(", sort=").append(sort); sb.append(", goodsTypeName=").append(goodsTypeName); sb.append(", goodsTypeParent=").append(goodsTypeParent); + sb.append(", thirdId=").append(thirdId); sb.append(", goodsTypeParentName=").append(goodsTypeParentName); sb.append(", saleNum=").append(saleNum); sb.append(", type=").append(type); - sb.append(", childType=").append(childType); - sb.append(", showType=").append(showType); sb.append(", goodsBrandName=").append(goodsBrandName); sb.append(", goodsBrand=").append(goodsBrand); sb.append(", goodsLabel=").append(goodsLabel); diff --git a/service/src/main/java/com/hfkj/entity/GoodsMsgExample.java b/service/src/main/java/com/hfkj/entity/GoodsMsgExample.java index ee723aa..085e8f9 100644 --- a/service/src/main/java/com/hfkj/entity/GoodsMsgExample.java +++ b/service/src/main/java/com/hfkj/entity/GoodsMsgExample.java @@ -245,73 +245,183 @@ public class GoodsMsgExample { return (Criteria) this; } - public Criteria andThirdIdIsNull() { - addCriterion("third_id is null"); + public Criteria andChildTypeIsNull() { + addCriterion("child_type is null"); return (Criteria) this; } - public Criteria andThirdIdIsNotNull() { - addCriterion("third_id is not null"); + public Criteria andChildTypeIsNotNull() { + addCriterion("child_type is not null"); return (Criteria) this; } - public Criteria andThirdIdEqualTo(String value) { - addCriterion("third_id =", value, "thirdId"); + public Criteria andChildTypeEqualTo(Integer value) { + addCriterion("child_type =", value, "childType"); return (Criteria) this; } - public Criteria andThirdIdNotEqualTo(String value) { - addCriterion("third_id <>", value, "thirdId"); + public Criteria andChildTypeNotEqualTo(Integer value) { + addCriterion("child_type <>", value, "childType"); return (Criteria) this; } - public Criteria andThirdIdGreaterThan(String value) { - addCriterion("third_id >", value, "thirdId"); + public Criteria andChildTypeGreaterThan(Integer value) { + addCriterion("child_type >", value, "childType"); return (Criteria) this; } - public Criteria andThirdIdGreaterThanOrEqualTo(String value) { - addCriterion("third_id >=", value, "thirdId"); + public Criteria andChildTypeGreaterThanOrEqualTo(Integer value) { + addCriterion("child_type >=", value, "childType"); return (Criteria) this; } - public Criteria andThirdIdLessThan(String value) { - addCriterion("third_id <", value, "thirdId"); + public Criteria andChildTypeLessThan(Integer value) { + addCriterion("child_type <", value, "childType"); return (Criteria) this; } - public Criteria andThirdIdLessThanOrEqualTo(String value) { - addCriterion("third_id <=", value, "thirdId"); + public Criteria andChildTypeLessThanOrEqualTo(Integer value) { + addCriterion("child_type <=", value, "childType"); return (Criteria) this; } - public Criteria andThirdIdLike(String value) { - addCriterion("third_id like", value, "thirdId"); + public Criteria andChildTypeIn(List values) { + addCriterion("child_type in", values, "childType"); return (Criteria) this; } - public Criteria andThirdIdNotLike(String value) { - addCriterion("third_id not like", value, "thirdId"); + public Criteria andChildTypeNotIn(List values) { + addCriterion("child_type not in", values, "childType"); return (Criteria) this; } - public Criteria andThirdIdIn(List values) { - addCriterion("third_id in", values, "thirdId"); + public Criteria andChildTypeBetween(Integer value1, Integer value2) { + addCriterion("child_type between", value1, value2, "childType"); return (Criteria) this; } - public Criteria andThirdIdNotIn(List values) { - addCriterion("third_id not in", values, "thirdId"); + public Criteria andChildTypeNotBetween(Integer value1, Integer value2) { + addCriterion("child_type not between", value1, value2, "childType"); return (Criteria) this; } - public Criteria andThirdIdBetween(String value1, String value2) { - addCriterion("third_id between", value1, value2, "thirdId"); + public Criteria andShowTypeIsNull() { + addCriterion("show_type is null"); return (Criteria) this; } - public Criteria andThirdIdNotBetween(String value1, String value2) { - addCriterion("third_id not between", value1, value2, "thirdId"); + public Criteria andShowTypeIsNotNull() { + addCriterion("show_type is not null"); + return (Criteria) this; + } + + public Criteria andShowTypeEqualTo(Integer value) { + addCriterion("show_type =", value, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeNotEqualTo(Integer value) { + addCriterion("show_type <>", value, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeGreaterThan(Integer value) { + addCriterion("show_type >", value, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeGreaterThanOrEqualTo(Integer value) { + addCriterion("show_type >=", value, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeLessThan(Integer value) { + addCriterion("show_type <", value, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeLessThanOrEqualTo(Integer value) { + addCriterion("show_type <=", value, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeIn(List values) { + addCriterion("show_type in", values, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeNotIn(List values) { + addCriterion("show_type not in", values, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeBetween(Integer value1, Integer value2) { + addCriterion("show_type between", value1, value2, "showType"); + return (Criteria) this; + } + + public Criteria andShowTypeNotBetween(Integer value1, Integer value2) { + addCriterion("show_type not between", value1, value2, "showType"); + return (Criteria) this; + } + + public Criteria andSortIsNull() { + addCriterion("sort is null"); + return (Criteria) this; + } + + public Criteria andSortIsNotNull() { + addCriterion("sort is not null"); + return (Criteria) this; + } + + public Criteria andSortEqualTo(Integer value) { + addCriterion("sort =", value, "sort"); + return (Criteria) this; + } + + public Criteria andSortNotEqualTo(Integer value) { + addCriterion("sort <>", value, "sort"); + return (Criteria) this; + } + + public Criteria andSortGreaterThan(Integer value) { + addCriterion("sort >", value, "sort"); + return (Criteria) this; + } + + public Criteria andSortGreaterThanOrEqualTo(Integer value) { + addCriterion("sort >=", value, "sort"); + return (Criteria) this; + } + + public Criteria andSortLessThan(Integer value) { + addCriterion("sort <", value, "sort"); + return (Criteria) this; + } + + public Criteria andSortLessThanOrEqualTo(Integer value) { + addCriterion("sort <=", value, "sort"); + return (Criteria) this; + } + + public Criteria andSortIn(List values) { + addCriterion("sort in", values, "sort"); + return (Criteria) this; + } + + public Criteria andSortNotIn(List values) { + addCriterion("sort not in", values, "sort"); + return (Criteria) this; + } + + public Criteria andSortBetween(Integer value1, Integer value2) { + addCriterion("sort between", value1, value2, "sort"); + return (Criteria) this; + } + + public Criteria andSortNotBetween(Integer value1, Integer value2) { + addCriterion("sort not between", value1, value2, "sort"); return (Criteria) this; } @@ -445,6 +555,76 @@ public class GoodsMsgExample { return (Criteria) this; } + public Criteria andThirdIdIsNull() { + addCriterion("third_id is null"); + return (Criteria) this; + } + + public Criteria andThirdIdIsNotNull() { + addCriterion("third_id is not null"); + return (Criteria) this; + } + + public Criteria andThirdIdEqualTo(String value) { + addCriterion("third_id =", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdNotEqualTo(String value) { + addCriterion("third_id <>", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdGreaterThan(String value) { + addCriterion("third_id >", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdGreaterThanOrEqualTo(String value) { + addCriterion("third_id >=", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdLessThan(String value) { + addCriterion("third_id <", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdLessThanOrEqualTo(String value) { + addCriterion("third_id <=", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdLike(String value) { + addCriterion("third_id like", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdNotLike(String value) { + addCriterion("third_id not like", value, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdIn(List values) { + addCriterion("third_id in", values, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdNotIn(List values) { + addCriterion("third_id not in", values, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdBetween(String value1, String value2) { + addCriterion("third_id between", value1, value2, "thirdId"); + return (Criteria) this; + } + + public Criteria andThirdIdNotBetween(String value1, String value2) { + addCriterion("third_id not between", value1, value2, "thirdId"); + return (Criteria) this; + } + public Criteria andGoodsTypeParentNameIsNull() { addCriterion("goods_type_parent_name is null"); return (Criteria) this; @@ -635,126 +815,6 @@ public class GoodsMsgExample { return (Criteria) this; } - public Criteria andChildTypeIsNull() { - addCriterion("child_type is null"); - return (Criteria) this; - } - - public Criteria andChildTypeIsNotNull() { - addCriterion("child_type is not null"); - return (Criteria) this; - } - - public Criteria andChildTypeEqualTo(Integer value) { - addCriterion("child_type =", value, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeNotEqualTo(Integer value) { - addCriterion("child_type <>", value, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeGreaterThan(Integer value) { - addCriterion("child_type >", value, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeGreaterThanOrEqualTo(Integer value) { - addCriterion("child_type >=", value, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeLessThan(Integer value) { - addCriterion("child_type <", value, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeLessThanOrEqualTo(Integer value) { - addCriterion("child_type <=", value, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeIn(List values) { - addCriterion("child_type in", values, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeNotIn(List values) { - addCriterion("child_type not in", values, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeBetween(Integer value1, Integer value2) { - addCriterion("child_type between", value1, value2, "childType"); - return (Criteria) this; - } - - public Criteria andChildTypeNotBetween(Integer value1, Integer value2) { - addCriterion("child_type not between", value1, value2, "childType"); - return (Criteria) this; - } - - public Criteria andShowTypeIsNull() { - addCriterion("show_type is null"); - return (Criteria) this; - } - - public Criteria andShowTypeIsNotNull() { - addCriterion("show_type is not null"); - return (Criteria) this; - } - - public Criteria andShowTypeEqualTo(Integer value) { - addCriterion("show_type =", value, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeNotEqualTo(Integer value) { - addCriterion("show_type <>", value, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeGreaterThan(Integer value) { - addCriterion("show_type >", value, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeGreaterThanOrEqualTo(Integer value) { - addCriterion("show_type >=", value, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeLessThan(Integer value) { - addCriterion("show_type <", value, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeLessThanOrEqualTo(Integer value) { - addCriterion("show_type <=", value, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeIn(List values) { - addCriterion("show_type in", values, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeNotIn(List values) { - addCriterion("show_type not in", values, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeBetween(Integer value1, Integer value2) { - addCriterion("show_type between", value1, value2, "showType"); - return (Criteria) this; - } - - public Criteria andShowTypeNotBetween(Integer value1, Integer value2) { - addCriterion("show_type not between", value1, value2, "showType"); - return (Criteria) this; - } - public Criteria andGoodsBrandNameIsNull() { addCriterion("goods_brand_name is null"); return (Criteria) this;