From e3483d044705c38ee6248175274f17f210ebf3ad Mon Sep 17 00:00:00 2001 From: YuanYe <418471657@qq.com> Date: Mon, 31 Mar 2025 13:47:30 +0800 Subject: [PATCH] 1 --- .../java/com/hfkj/dao/GoodsSpecsMapper.java | 47 ++++--- .../com/hfkj/dao/GoodsSpecsSqlProvider.java | 30 ++-- .../main/java/com/hfkj/entity/GoodsSpecs.java | 110 ++++++++++++++- .../com/hfkj/entity/GoodsSpecsExample.java | 128 +++++++++++++----- 4 files changed, 244 insertions(+), 71 deletions(-) diff --git a/service/src/main/java/com/hfkj/dao/GoodsSpecsMapper.java b/service/src/main/java/com/hfkj/dao/GoodsSpecsMapper.java index 0126122..d08be95 100644 --- a/service/src/main/java/com/hfkj/dao/GoodsSpecsMapper.java +++ b/service/src/main/java/com/hfkj/dao/GoodsSpecsMapper.java @@ -39,22 +39,22 @@ public interface GoodsSpecsMapper extends GoodsSpecsMapperExt { int deleteByPrimaryKey(Long id); @Insert({ - "insert into goods_specs (goods_id, third_id, ", - "`name`, pur_limit, ", - "sale_price, original_price, ", - "third_price, stock, ", - "show_img, sales_end_time, ", - "`status`, create_time, ", - "update_time, ext_1, ", - "ext_2, ext_3)", - "values (#{goodsId,jdbcType=BIGINT}, #{thirdId,jdbcType=VARCHAR}, ", - "#{name,jdbcType=VARCHAR}, #{purLimit,jdbcType=INTEGER}, ", - "#{salePrice,jdbcType=DECIMAL}, #{originalPrice,jdbcType=DECIMAL}, ", - "#{thirdPrice,jdbcType=DECIMAL}, #{stock,jdbcType=INTEGER}, ", - "#{showImg,jdbcType=VARCHAR}, #{salesEndTime,jdbcType=TIMESTAMP}, ", - "#{status,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", - "#{updateTime,jdbcType=TIMESTAMP}, #{ext1,jdbcType=VARCHAR}, ", - "#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" + "insert into goods_specs (goods_id, `name`, ", + "third_id, automatic_price, ", + "pur_limit, sale_price, ", + "original_price, third_price, ", + "stock, show_img, ", + "sales_end_time, `status`, ", + "create_time, update_time, ", + "ext_1, ext_2, ext_3)", + "values (#{goodsId,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, ", + "#{thirdId,jdbcType=VARCHAR}, #{automaticPrice,jdbcType=INTEGER}, ", + "#{purLimit,jdbcType=INTEGER}, #{salePrice,jdbcType=DECIMAL}, ", + "#{originalPrice,jdbcType=DECIMAL}, #{thirdPrice,jdbcType=DECIMAL}, ", + "#{stock,jdbcType=INTEGER}, #{showImg,jdbcType=VARCHAR}, ", + "#{salesEndTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ", + "#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, ", + "#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" }) @Options(useGeneratedKeys=true,keyProperty="id") int insert(GoodsSpecs record); @@ -67,8 +67,9 @@ public interface GoodsSpecsMapper extends GoodsSpecsMapperExt { @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="goods_id", property="goodsId", jdbcType=JdbcType.BIGINT), - @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), @Result(column="name", property="name", jdbcType=JdbcType.VARCHAR), + @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), + @Result(column="automatic_price", property="automaticPrice", jdbcType=JdbcType.INTEGER), @Result(column="pur_limit", property="purLimit", jdbcType=JdbcType.INTEGER), @Result(column="sale_price", property="salePrice", jdbcType=JdbcType.DECIMAL), @Result(column="original_price", property="originalPrice", jdbcType=JdbcType.DECIMAL), @@ -87,17 +88,18 @@ public interface GoodsSpecsMapper extends GoodsSpecsMapperExt { @Select({ "select", - "id, goods_id, third_id, `name`, pur_limit, sale_price, original_price, third_price, ", - "stock, show_img, sales_end_time, `status`, create_time, update_time, ext_1, ", - "ext_2, ext_3", + "id, goods_id, `name`, third_id, automatic_price, pur_limit, sale_price, original_price, ", + "third_price, stock, show_img, sales_end_time, `status`, create_time, update_time, ", + "ext_1, ext_2, ext_3", "from goods_specs", "where id = #{id,jdbcType=BIGINT}" }) @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="goods_id", property="goodsId", jdbcType=JdbcType.BIGINT), - @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), @Result(column="name", property="name", jdbcType=JdbcType.VARCHAR), + @Result(column="third_id", property="thirdId", jdbcType=JdbcType.VARCHAR), + @Result(column="automatic_price", property="automaticPrice", jdbcType=JdbcType.INTEGER), @Result(column="pur_limit", property="purLimit", jdbcType=JdbcType.INTEGER), @Result(column="sale_price", property="salePrice", jdbcType=JdbcType.DECIMAL), @Result(column="original_price", property="originalPrice", jdbcType=JdbcType.DECIMAL), @@ -126,8 +128,9 @@ public interface GoodsSpecsMapper extends GoodsSpecsMapperExt { @Update({ "update goods_specs", "set goods_id = #{goodsId,jdbcType=BIGINT},", - "third_id = #{thirdId,jdbcType=VARCHAR},", "`name` = #{name,jdbcType=VARCHAR},", + "third_id = #{thirdId,jdbcType=VARCHAR},", + "automatic_price = #{automaticPrice,jdbcType=INTEGER},", "pur_limit = #{purLimit,jdbcType=INTEGER},", "sale_price = #{salePrice,jdbcType=DECIMAL},", "original_price = #{originalPrice,jdbcType=DECIMAL},", diff --git a/service/src/main/java/com/hfkj/dao/GoodsSpecsSqlProvider.java b/service/src/main/java/com/hfkj/dao/GoodsSpecsSqlProvider.java index aa0ee0a..e8b51d1 100644 --- a/service/src/main/java/com/hfkj/dao/GoodsSpecsSqlProvider.java +++ b/service/src/main/java/com/hfkj/dao/GoodsSpecsSqlProvider.java @@ -32,12 +32,16 @@ public class GoodsSpecsSqlProvider { sql.VALUES("goods_id", "#{goodsId,jdbcType=BIGINT}"); } + if (record.getName() != null) { + sql.VALUES("`name`", "#{name,jdbcType=VARCHAR}"); + } + if (record.getThirdId() != null) { sql.VALUES("third_id", "#{thirdId,jdbcType=VARCHAR}"); } - if (record.getName() != null) { - sql.VALUES("`name`", "#{name,jdbcType=VARCHAR}"); + if (record.getAutomaticPrice() != null) { + sql.VALUES("automatic_price", "#{automaticPrice,jdbcType=INTEGER}"); } if (record.getPurLimit() != null) { @@ -103,8 +107,9 @@ public class GoodsSpecsSqlProvider { sql.SELECT("id"); } sql.SELECT("goods_id"); - sql.SELECT("third_id"); sql.SELECT("`name`"); + sql.SELECT("third_id"); + sql.SELECT("automatic_price"); sql.SELECT("pur_limit"); sql.SELECT("sale_price"); sql.SELECT("original_price"); @@ -143,12 +148,16 @@ public class GoodsSpecsSqlProvider { sql.SET("goods_id = #{record.goodsId,jdbcType=BIGINT}"); } + if (record.getName() != null) { + sql.SET("`name` = #{record.name,jdbcType=VARCHAR}"); + } + if (record.getThirdId() != null) { sql.SET("third_id = #{record.thirdId,jdbcType=VARCHAR}"); } - if (record.getName() != null) { - sql.SET("`name` = #{record.name,jdbcType=VARCHAR}"); + if (record.getAutomaticPrice() != null) { + sql.SET("automatic_price = #{record.automaticPrice,jdbcType=INTEGER}"); } if (record.getPurLimit() != null) { @@ -213,8 +222,9 @@ public class GoodsSpecsSqlProvider { sql.SET("id = #{record.id,jdbcType=BIGINT}"); sql.SET("goods_id = #{record.goodsId,jdbcType=BIGINT}"); - sql.SET("third_id = #{record.thirdId,jdbcType=VARCHAR}"); sql.SET("`name` = #{record.name,jdbcType=VARCHAR}"); + sql.SET("third_id = #{record.thirdId,jdbcType=VARCHAR}"); + sql.SET("automatic_price = #{record.automaticPrice,jdbcType=INTEGER}"); sql.SET("pur_limit = #{record.purLimit,jdbcType=INTEGER}"); sql.SET("sale_price = #{record.salePrice,jdbcType=DECIMAL}"); sql.SET("original_price = #{record.originalPrice,jdbcType=DECIMAL}"); @@ -242,12 +252,16 @@ public class GoodsSpecsSqlProvider { sql.SET("goods_id = #{goodsId,jdbcType=BIGINT}"); } + if (record.getName() != null) { + sql.SET("`name` = #{name,jdbcType=VARCHAR}"); + } + if (record.getThirdId() != null) { sql.SET("third_id = #{thirdId,jdbcType=VARCHAR}"); } - if (record.getName() != null) { - sql.SET("`name` = #{name,jdbcType=VARCHAR}"); + if (record.getAutomaticPrice() != null) { + sql.SET("automatic_price = #{automaticPrice,jdbcType=INTEGER}"); } if (record.getPurLimit() != null) { diff --git a/service/src/main/java/com/hfkj/entity/GoodsSpecs.java b/service/src/main/java/com/hfkj/entity/GoodsSpecs.java index 501dc4d..edeaedf 100644 --- a/service/src/main/java/com/hfkj/entity/GoodsSpecs.java +++ b/service/src/main/java/com/hfkj/entity/GoodsSpecs.java @@ -25,14 +25,16 @@ public class GoodsSpecs implements Serializable { private Long goodsId; /** - * 第三方ID + * sku名称 */ + private String name; + private String thirdId; /** - * sku名称 + * 是否自动更新价格 */ - private String name; + private Integer automaticPrice; /** * 限购数量 @@ -117,6 +119,14 @@ public class GoodsSpecs implements Serializable { this.goodsId = goodsId; } + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + public String getThirdId() { return thirdId; } @@ -125,12 +135,12 @@ public class GoodsSpecs implements Serializable { this.thirdId = thirdId; } - public String getName() { - return name; + public Integer getAutomaticPrice() { + return automaticPrice; } - public void setName(String name) { - this.name = name; + public void setAutomaticPrice(Integer automaticPrice) { + this.automaticPrice = automaticPrice; } public Integer getPurLimit() { @@ -236,4 +246,90 @@ public class GoodsSpecs implements Serializable { public void setExt3(String ext3) { this.ext3 = ext3; } + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (that == null) { + return false; + } + if (getClass() != that.getClass()) { + return false; + } + GoodsSpecs other = (GoodsSpecs) that; + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId())) + && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName())) + && (this.getThirdId() == null ? other.getThirdId() == null : this.getThirdId().equals(other.getThirdId())) + && (this.getAutomaticPrice() == null ? other.getAutomaticPrice() == null : this.getAutomaticPrice().equals(other.getAutomaticPrice())) + && (this.getPurLimit() == null ? other.getPurLimit() == null : this.getPurLimit().equals(other.getPurLimit())) + && (this.getSalePrice() == null ? other.getSalePrice() == null : this.getSalePrice().equals(other.getSalePrice())) + && (this.getOriginalPrice() == null ? other.getOriginalPrice() == null : this.getOriginalPrice().equals(other.getOriginalPrice())) + && (this.getThirdPrice() == null ? other.getThirdPrice() == null : this.getThirdPrice().equals(other.getThirdPrice())) + && (this.getStock() == null ? other.getStock() == null : this.getStock().equals(other.getStock())) + && (this.getShowImg() == null ? other.getShowImg() == null : this.getShowImg().equals(other.getShowImg())) + && (this.getSalesEndTime() == null ? other.getSalesEndTime() == null : this.getSalesEndTime().equals(other.getSalesEndTime())) + && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) + && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) + && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) + && (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) + && (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) + && (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); + result = prime * result + ((getGoodsId() == null) ? 0 : getGoodsId().hashCode()); + result = prime * result + ((getName() == null) ? 0 : getName().hashCode()); + result = prime * result + ((getThirdId() == null) ? 0 : getThirdId().hashCode()); + result = prime * result + ((getAutomaticPrice() == null) ? 0 : getAutomaticPrice().hashCode()); + result = prime * result + ((getPurLimit() == null) ? 0 : getPurLimit().hashCode()); + result = prime * result + ((getSalePrice() == null) ? 0 : getSalePrice().hashCode()); + result = prime * result + ((getOriginalPrice() == null) ? 0 : getOriginalPrice().hashCode()); + result = prime * result + ((getThirdPrice() == null) ? 0 : getThirdPrice().hashCode()); + result = prime * result + ((getStock() == null) ? 0 : getStock().hashCode()); + result = prime * result + ((getShowImg() == null) ? 0 : getShowImg().hashCode()); + result = prime * result + ((getSalesEndTime() == null) ? 0 : getSalesEndTime().hashCode()); + result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); + result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); + result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); + result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); + result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); + result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); + return result; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append(" ["); + sb.append("Hash = ").append(hashCode()); + sb.append(", id=").append(id); + sb.append(", goodsId=").append(goodsId); + sb.append(", name=").append(name); + sb.append(", thirdId=").append(thirdId); + sb.append(", automaticPrice=").append(automaticPrice); + sb.append(", purLimit=").append(purLimit); + sb.append(", salePrice=").append(salePrice); + sb.append(", originalPrice=").append(originalPrice); + sb.append(", thirdPrice=").append(thirdPrice); + sb.append(", stock=").append(stock); + sb.append(", showImg=").append(showImg); + sb.append(", salesEndTime=").append(salesEndTime); + sb.append(", status=").append(status); + sb.append(", createTime=").append(createTime); + sb.append(", updateTime=").append(updateTime); + sb.append(", ext1=").append(ext1); + sb.append(", ext2=").append(ext2); + sb.append(", ext3=").append(ext3); + sb.append(", serialVersionUID=").append(serialVersionUID); + sb.append("]"); + return sb.toString(); + } } \ No newline at end of file diff --git a/service/src/main/java/com/hfkj/entity/GoodsSpecsExample.java b/service/src/main/java/com/hfkj/entity/GoodsSpecsExample.java index fef25f8..67b6e20 100644 --- a/service/src/main/java/com/hfkj/entity/GoodsSpecsExample.java +++ b/service/src/main/java/com/hfkj/entity/GoodsSpecsExample.java @@ -246,6 +246,76 @@ public class GoodsSpecsExample { 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 values) { + addCriterion("`name` in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameNotIn(List 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 andThirdIdIsNull() { addCriterion("third_id is null"); return (Criteria) this; @@ -316,73 +386,63 @@ public class GoodsSpecsExample { 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"); + public Criteria andAutomaticPriceIsNull() { + addCriterion("automatic_price is null"); return (Criteria) this; } - public Criteria andNameNotEqualTo(String value) { - addCriterion("`name` <>", value, "name"); + public Criteria andAutomaticPriceIsNotNull() { + addCriterion("automatic_price is not null"); return (Criteria) this; } - public Criteria andNameGreaterThan(String value) { - addCriterion("`name` >", value, "name"); + public Criteria andAutomaticPriceEqualTo(Integer value) { + addCriterion("automatic_price =", value, "automaticPrice"); return (Criteria) this; } - public Criteria andNameGreaterThanOrEqualTo(String value) { - addCriterion("`name` >=", value, "name"); + public Criteria andAutomaticPriceNotEqualTo(Integer value) { + addCriterion("automatic_price <>", value, "automaticPrice"); return (Criteria) this; } - public Criteria andNameLessThan(String value) { - addCriterion("`name` <", value, "name"); + public Criteria andAutomaticPriceGreaterThan(Integer value) { + addCriterion("automatic_price >", value, "automaticPrice"); return (Criteria) this; } - public Criteria andNameLessThanOrEqualTo(String value) { - addCriterion("`name` <=", value, "name"); + public Criteria andAutomaticPriceGreaterThanOrEqualTo(Integer value) { + addCriterion("automatic_price >=", value, "automaticPrice"); return (Criteria) this; } - public Criteria andNameLike(String value) { - addCriterion("`name` like", value, "name"); + public Criteria andAutomaticPriceLessThan(Integer value) { + addCriterion("automatic_price <", value, "automaticPrice"); return (Criteria) this; } - public Criteria andNameNotLike(String value) { - addCriterion("`name` not like", value, "name"); + public Criteria andAutomaticPriceLessThanOrEqualTo(Integer value) { + addCriterion("automatic_price <=", value, "automaticPrice"); return (Criteria) this; } - public Criteria andNameIn(List values) { - addCriterion("`name` in", values, "name"); + public Criteria andAutomaticPriceIn(List values) { + addCriterion("automatic_price in", values, "automaticPrice"); return (Criteria) this; } - public Criteria andNameNotIn(List values) { - addCriterion("`name` not in", values, "name"); + public Criteria andAutomaticPriceNotIn(List values) { + addCriterion("automatic_price not in", values, "automaticPrice"); return (Criteria) this; } - public Criteria andNameBetween(String value1, String value2) { - addCriterion("`name` between", value1, value2, "name"); + public Criteria andAutomaticPriceBetween(Integer value1, Integer value2) { + addCriterion("automatic_price between", value1, value2, "automaticPrice"); return (Criteria) this; } - public Criteria andNameNotBetween(String value1, String value2) { - addCriterion("`name` not between", value1, value2, "name"); + public Criteria andAutomaticPriceNotBetween(Integer value1, Integer value2) { + addCriterion("automatic_price not between", value1, value2, "automaticPrice"); return (Criteria) this; }