diff --git a/hai-bweb/src/main/java/com/bweb/controller/HighCouponAgentController.java b/hai-bweb/src/main/java/com/bweb/controller/HighCouponAgentController.java index 7d1cebfc..098e668d 100644 --- a/hai-bweb/src/main/java/com/bweb/controller/HighCouponAgentController.java +++ b/hai-bweb/src/main/java/com/bweb/controller/HighCouponAgentController.java @@ -117,21 +117,24 @@ public class HighCouponAgentController { throw ErrorHelp.genException(SysCode.System, ErrorCode.NOT_FOUND_AGENT, ""); } - // 校验是否重复分配 - if (highCouponAgentService.getRelByCouponAgent(highCouponAgentRel.getCouponId(),highCouponAgentRel.getAgentId()) != null) { - log.error("HighCouponAgentController -> assignCouponAgent() error!","参数错误"); - throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, coupon.getCouponName() + "已分配给" + highAgent.getAgentName()); + // 校验是否分配过 + HighCouponAgentRel couponAgent = highCouponAgentService.getRelByCouponAgent(highCouponAgentRel.getCouponId(), highCouponAgentRel.getAgentId()); + if (couponAgent != null) { + couponAgent.setStockCount(couponAgent.getStockCount() + highCouponAgentRel.getStockCount()); + couponAgent.setOperatorId(userInfoModel.getSecUser().getId()); + couponAgent.setOperatorName(userInfoModel.getSecUser().getUserName()); + highCouponAgentService.assignCouponAgent(couponAgent,highCouponAgentRel.getStockCount()); + } else { + highCouponAgentRel.setCouponName(coupon.getCouponName()); + highCouponAgentRel.setSalesPrice(coupon.getSalesPrice()); + highCouponAgentRel.setStatus(1); // 状态 0:删除 1:正常 + highCouponAgentRel.setSalesCount(0); + highCouponAgentRel.setCreateTime(new Date()); + highCouponAgentRel.setOperatorId(userInfoModel.getSecUser().getId()); + highCouponAgentRel.setOperatorName(userInfoModel.getSecUser().getUserName()); + highCouponAgentService.assignCouponAgent(highCouponAgentRel,highCouponAgentRel.getStockCount()); } - highCouponAgentRel.setCouponName(coupon.getCouponName()); - highCouponAgentRel.setSalesPrice(coupon.getSalesPrice()); - highCouponAgentRel.setStatus(1); // 状态 0:删除 1:正常 - highCouponAgentRel.setSalesCount(0); - highCouponAgentRel.setCreateTime(new Date()); - highCouponAgentRel.setOperatorId(userInfoModel.getSecUser().getId()); - highCouponAgentRel.setOperatorName(userInfoModel.getSecUser().getUserName()); - highCouponAgentService.assignCouponAgent(highCouponAgentRel); - return ResponseMsgUtil.success("分配成功"); } catch (Exception e) { diff --git a/hai-bweb/src/main/resources/dev/application.yml b/hai-bweb/src/main/resources/dev/application.yml index 9f6d3fd8..58dd9a45 100644 --- a/hai-bweb/src/main/resources/dev/application.yml +++ b/hai-bweb/src/main/resources/dev/application.yml @@ -9,8 +9,8 @@ debug: false #datasource数据源设置 spring: datasource: - url: jdbc:mysql://139.159.177.244:3306/hfkj?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8 - username: hfkj + url: jdbc:mysql://139.159.177.244:3306/hsg_pre?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8 + username: root password: HF123456. type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver diff --git a/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeMapper.java b/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeMapper.java index 15aa0c35..f876a552 100644 --- a/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeMapper.java +++ b/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeMapper.java @@ -41,18 +41,18 @@ public interface HighCouponAgentCodeMapper extends HighCouponAgentCodeMapperExt @Insert({ "insert into high_coupon_agent_code (coupon_agent_id, coupon_id, ", "agent_id, coupon_code_id, ", - "coupon_code, qr_code, ", - "`status`, remark, ", - "create_time, operator_id, ", - "operator_name, ext_1, ", - "ext_2, ext_3)", + "coupon_agent_record_id, coupon_code, ", + "qr_code, `status`, ", + "remark, create_time, ", + "operator_id, operator_name, ", + "ext_1, ext_2, ext_3)", "values (#{couponAgentId,jdbcType=BIGINT}, #{couponId,jdbcType=BIGINT}, ", "#{agentId,jdbcType=BIGINT}, #{couponCodeId,jdbcType=BIGINT}, ", - "#{couponCode,jdbcType=VARCHAR}, #{qrCode,jdbcType=VARCHAR}, ", - "#{status,jdbcType=INTEGER}, #{remark,jdbcType=VARCHAR}, ", - "#{createTime,jdbcType=TIMESTAMP}, #{operatorId,jdbcType=BIGINT}, ", - "#{operatorName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", - "#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" + "#{couponAgentRecordId,jdbcType=BIGINT}, #{couponCode,jdbcType=VARCHAR}, ", + "#{qrCode,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, ", + "#{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, ", + "#{operatorId,jdbcType=BIGINT}, #{operatorName,jdbcType=VARCHAR}, ", + "#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" }) @Options(useGeneratedKeys=true,keyProperty="id") int insert(HighCouponAgentCode record); @@ -68,6 +68,7 @@ public interface HighCouponAgentCodeMapper extends HighCouponAgentCodeMapperExt @Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), @Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), @Result(column="coupon_code_id", property="couponCodeId", jdbcType=JdbcType.BIGINT), + @Result(column="coupon_agent_record_id", property="couponAgentRecordId", jdbcType=JdbcType.BIGINT), @Result(column="coupon_code", property="couponCode", jdbcType=JdbcType.VARCHAR), @Result(column="qr_code", property="qrCode", jdbcType=JdbcType.VARCHAR), @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), @@ -83,8 +84,9 @@ public interface HighCouponAgentCodeMapper extends HighCouponAgentCodeMapperExt @Select({ "select", - "id, coupon_agent_id, coupon_id, agent_id, coupon_code_id, coupon_code, qr_code, ", - "`status`, remark, create_time, operator_id, operator_name, ext_1, ext_2, ext_3", + "id, coupon_agent_id, coupon_id, agent_id, coupon_code_id, coupon_agent_record_id, ", + "coupon_code, qr_code, `status`, remark, create_time, operator_id, operator_name, ", + "ext_1, ext_2, ext_3", "from high_coupon_agent_code", "where id = #{id,jdbcType=BIGINT}" }) @@ -94,6 +96,7 @@ public interface HighCouponAgentCodeMapper extends HighCouponAgentCodeMapperExt @Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), @Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), @Result(column="coupon_code_id", property="couponCodeId", jdbcType=JdbcType.BIGINT), + @Result(column="coupon_agent_record_id", property="couponAgentRecordId", jdbcType=JdbcType.BIGINT), @Result(column="coupon_code", property="couponCode", jdbcType=JdbcType.VARCHAR), @Result(column="qr_code", property="qrCode", jdbcType=JdbcType.VARCHAR), @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), @@ -122,6 +125,7 @@ public interface HighCouponAgentCodeMapper extends HighCouponAgentCodeMapperExt "coupon_id = #{couponId,jdbcType=BIGINT},", "agent_id = #{agentId,jdbcType=BIGINT},", "coupon_code_id = #{couponCodeId,jdbcType=BIGINT},", + "coupon_agent_record_id = #{couponAgentRecordId,jdbcType=BIGINT},", "coupon_code = #{couponCode,jdbcType=VARCHAR},", "qr_code = #{qrCode,jdbcType=VARCHAR},", "`status` = #{status,jdbcType=INTEGER},", diff --git a/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeSqlProvider.java b/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeSqlProvider.java index 1495e083..3ff4fd78 100644 --- a/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeSqlProvider.java +++ b/hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeSqlProvider.java @@ -44,6 +44,10 @@ public class HighCouponAgentCodeSqlProvider { sql.VALUES("coupon_code_id", "#{couponCodeId,jdbcType=BIGINT}"); } + if (record.getCouponAgentRecordId() != null) { + sql.VALUES("coupon_agent_record_id", "#{couponAgentRecordId,jdbcType=BIGINT}"); + } + if (record.getCouponCode() != null) { sql.VALUES("coupon_code", "#{couponCode,jdbcType=VARCHAR}"); } @@ -98,6 +102,7 @@ public class HighCouponAgentCodeSqlProvider { sql.SELECT("coupon_id"); sql.SELECT("agent_id"); sql.SELECT("coupon_code_id"); + sql.SELECT("coupon_agent_record_id"); sql.SELECT("coupon_code"); sql.SELECT("qr_code"); sql.SELECT("`status`"); @@ -145,6 +150,10 @@ public class HighCouponAgentCodeSqlProvider { sql.SET("coupon_code_id = #{record.couponCodeId,jdbcType=BIGINT}"); } + if (record.getCouponAgentRecordId() != null) { + sql.SET("coupon_agent_record_id = #{record.couponAgentRecordId,jdbcType=BIGINT}"); + } + if (record.getCouponCode() != null) { sql.SET("coupon_code = #{record.couponCode,jdbcType=VARCHAR}"); } @@ -198,6 +207,7 @@ public class HighCouponAgentCodeSqlProvider { sql.SET("coupon_id = #{record.couponId,jdbcType=BIGINT}"); sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); sql.SET("coupon_code_id = #{record.couponCodeId,jdbcType=BIGINT}"); + sql.SET("coupon_agent_record_id = #{record.couponAgentRecordId,jdbcType=BIGINT}"); sql.SET("coupon_code = #{record.couponCode,jdbcType=VARCHAR}"); sql.SET("qr_code = #{record.qrCode,jdbcType=VARCHAR}"); sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); @@ -234,6 +244,10 @@ public class HighCouponAgentCodeSqlProvider { sql.SET("coupon_code_id = #{couponCodeId,jdbcType=BIGINT}"); } + if (record.getCouponAgentRecordId() != null) { + sql.SET("coupon_agent_record_id = #{couponAgentRecordId,jdbcType=BIGINT}"); + } + if (record.getCouponCode() != null) { sql.SET("coupon_code = #{couponCode,jdbcType=VARCHAR}"); } diff --git a/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapper.java b/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapper.java new file mode 100644 index 00000000..97f0a052 --- /dev/null +++ b/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapper.java @@ -0,0 +1,139 @@ +package com.hai.dao; + +import com.hai.entity.HighCouponAgentRecord; +import com.hai.entity.HighCouponAgentRecordExample; +import java.util.List; +import org.apache.ibatis.annotations.Delete; +import org.apache.ibatis.annotations.DeleteProvider; +import org.apache.ibatis.annotations.Insert; +import org.apache.ibatis.annotations.InsertProvider; +import org.apache.ibatis.annotations.Options; +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Result; +import org.apache.ibatis.annotations.Results; +import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.SelectProvider; +import org.apache.ibatis.annotations.Update; +import org.apache.ibatis.annotations.UpdateProvider; +import org.apache.ibatis.type.JdbcType; +import org.springframework.stereotype.Repository; + +/** + * + * 代码由工具生成,请勿修改!!! + * 如果需要扩展请在其父类进行扩展 + * + **/ +@Repository +public interface HighCouponAgentRecordMapper extends HighCouponAgentRecordMapperExt { + @SelectProvider(type=HighCouponAgentRecordSqlProvider.class, method="countByExample") + long countByExample(HighCouponAgentRecordExample example); + + @DeleteProvider(type=HighCouponAgentRecordSqlProvider.class, method="deleteByExample") + int deleteByExample(HighCouponAgentRecordExample example); + + @Delete({ + "delete from high_coupon_agent_record", + "where id = #{id,jdbcType=BIGINT}" + }) + int deleteByPrimaryKey(Long id); + + @Insert({ + "insert into high_coupon_agent_record (coupon_agent_id, coupon_id, ", + "coupon_name, sales_price, ", + "agent_id, agent_name, ", + "stock_count, create_time, ", + "remark, operator_id, ", + "operator_name, ext_1, ", + "ext_2, ext_3)", + "values (#{couponAgentId,jdbcType=BIGINT}, #{couponId,jdbcType=BIGINT}, ", + "#{couponName,jdbcType=VARCHAR}, #{salesPrice,jdbcType=DECIMAL}, ", + "#{agentId,jdbcType=BIGINT}, #{agentName,jdbcType=VARCHAR}, ", + "#{stockCount,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", + "#{remark,jdbcType=VARCHAR}, #{operatorId,jdbcType=BIGINT}, ", + "#{operatorName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", + "#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" + }) + @Options(useGeneratedKeys=true,keyProperty="id") + int insert(HighCouponAgentRecord record); + + @InsertProvider(type=HighCouponAgentRecordSqlProvider.class, method="insertSelective") + @Options(useGeneratedKeys=true,keyProperty="id") + int insertSelective(HighCouponAgentRecord record); + + @SelectProvider(type=HighCouponAgentRecordSqlProvider.class, method="selectByExample") + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), + @Result(column="coupon_agent_id", property="couponAgentId", jdbcType=JdbcType.BIGINT), + @Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), + @Result(column="coupon_name", property="couponName", jdbcType=JdbcType.VARCHAR), + @Result(column="sales_price", property="salesPrice", jdbcType=JdbcType.DECIMAL), + @Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), + @Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), + @Result(column="stock_count", property="stockCount", jdbcType=JdbcType.INTEGER), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="remark", property="remark", jdbcType=JdbcType.VARCHAR), + @Result(column="operator_id", property="operatorId", jdbcType=JdbcType.BIGINT), + @Result(column="operator_name", property="operatorName", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + List selectByExample(HighCouponAgentRecordExample example); + + @Select({ + "select", + "id, coupon_agent_id, coupon_id, coupon_name, sales_price, agent_id, agent_name, ", + "stock_count, create_time, remark, operator_id, operator_name, ext_1, ext_2, ", + "ext_3", + "from high_coupon_agent_record", + "where id = #{id,jdbcType=BIGINT}" + }) + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), + @Result(column="coupon_agent_id", property="couponAgentId", jdbcType=JdbcType.BIGINT), + @Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), + @Result(column="coupon_name", property="couponName", jdbcType=JdbcType.VARCHAR), + @Result(column="sales_price", property="salesPrice", jdbcType=JdbcType.DECIMAL), + @Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), + @Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), + @Result(column="stock_count", property="stockCount", jdbcType=JdbcType.INTEGER), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="remark", property="remark", jdbcType=JdbcType.VARCHAR), + @Result(column="operator_id", property="operatorId", jdbcType=JdbcType.BIGINT), + @Result(column="operator_name", property="operatorName", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + HighCouponAgentRecord selectByPrimaryKey(Long id); + + @UpdateProvider(type=HighCouponAgentRecordSqlProvider.class, method="updateByExampleSelective") + int updateByExampleSelective(@Param("record") HighCouponAgentRecord record, @Param("example") HighCouponAgentRecordExample example); + + @UpdateProvider(type=HighCouponAgentRecordSqlProvider.class, method="updateByExample") + int updateByExample(@Param("record") HighCouponAgentRecord record, @Param("example") HighCouponAgentRecordExample example); + + @UpdateProvider(type=HighCouponAgentRecordSqlProvider.class, method="updateByPrimaryKeySelective") + int updateByPrimaryKeySelective(HighCouponAgentRecord record); + + @Update({ + "update high_coupon_agent_record", + "set coupon_agent_id = #{couponAgentId,jdbcType=BIGINT},", + "coupon_id = #{couponId,jdbcType=BIGINT},", + "coupon_name = #{couponName,jdbcType=VARCHAR},", + "sales_price = #{salesPrice,jdbcType=DECIMAL},", + "agent_id = #{agentId,jdbcType=BIGINT},", + "agent_name = #{agentName,jdbcType=VARCHAR},", + "stock_count = #{stockCount,jdbcType=INTEGER},", + "create_time = #{createTime,jdbcType=TIMESTAMP},", + "remark = #{remark,jdbcType=VARCHAR},", + "operator_id = #{operatorId,jdbcType=BIGINT},", + "operator_name = #{operatorName,jdbcType=VARCHAR},", + "ext_1 = #{ext1,jdbcType=VARCHAR},", + "ext_2 = #{ext2,jdbcType=VARCHAR},", + "ext_3 = #{ext3,jdbcType=VARCHAR}", + "where id = #{id,jdbcType=BIGINT}" + }) + int updateByPrimaryKey(HighCouponAgentRecord record); +} \ No newline at end of file diff --git a/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapperExt.java b/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapperExt.java new file mode 100644 index 00000000..07046886 --- /dev/null +++ b/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapperExt.java @@ -0,0 +1,7 @@ +package com.hai.dao; + +/** + * mapper扩展类 + */ +public interface HighCouponAgentRecordMapperExt { +} \ No newline at end of file diff --git a/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordSqlProvider.java b/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordSqlProvider.java new file mode 100644 index 00000000..ab91d8f0 --- /dev/null +++ b/hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordSqlProvider.java @@ -0,0 +1,374 @@ +package com.hai.dao; + +import com.hai.entity.HighCouponAgentRecord; +import com.hai.entity.HighCouponAgentRecordExample.Criteria; +import com.hai.entity.HighCouponAgentRecordExample.Criterion; +import com.hai.entity.HighCouponAgentRecordExample; +import java.util.List; +import java.util.Map; +import org.apache.ibatis.jdbc.SQL; + +public class HighCouponAgentRecordSqlProvider { + + public String countByExample(HighCouponAgentRecordExample example) { + SQL sql = new SQL(); + sql.SELECT("count(*)").FROM("high_coupon_agent_record"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String deleteByExample(HighCouponAgentRecordExample example) { + SQL sql = new SQL(); + sql.DELETE_FROM("high_coupon_agent_record"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String insertSelective(HighCouponAgentRecord record) { + SQL sql = new SQL(); + sql.INSERT_INTO("high_coupon_agent_record"); + + if (record.getCouponAgentId() != null) { + sql.VALUES("coupon_agent_id", "#{couponAgentId,jdbcType=BIGINT}"); + } + + if (record.getCouponId() != null) { + sql.VALUES("coupon_id", "#{couponId,jdbcType=BIGINT}"); + } + + if (record.getCouponName() != null) { + sql.VALUES("coupon_name", "#{couponName,jdbcType=VARCHAR}"); + } + + if (record.getSalesPrice() != null) { + sql.VALUES("sales_price", "#{salesPrice,jdbcType=DECIMAL}"); + } + + if (record.getAgentId() != null) { + sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); + } + + if (record.getAgentName() != null) { + sql.VALUES("agent_name", "#{agentName,jdbcType=VARCHAR}"); + } + + if (record.getStockCount() != null) { + sql.VALUES("stock_count", "#{stockCount,jdbcType=INTEGER}"); + } + + if (record.getCreateTime() != null) { + sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getRemark() != null) { + sql.VALUES("remark", "#{remark,jdbcType=VARCHAR}"); + } + + if (record.getOperatorId() != null) { + sql.VALUES("operator_id", "#{operatorId,jdbcType=BIGINT}"); + } + + if (record.getOperatorName() != null) { + sql.VALUES("operator_name", "#{operatorName,jdbcType=VARCHAR}"); + } + + if (record.getExt1() != null) { + sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); + } + + return sql.toString(); + } + + public String selectByExample(HighCouponAgentRecordExample example) { + SQL sql = new SQL(); + if (example != null && example.isDistinct()) { + sql.SELECT_DISTINCT("id"); + } else { + sql.SELECT("id"); + } + sql.SELECT("coupon_agent_id"); + sql.SELECT("coupon_id"); + sql.SELECT("coupon_name"); + sql.SELECT("sales_price"); + sql.SELECT("agent_id"); + sql.SELECT("agent_name"); + sql.SELECT("stock_count"); + sql.SELECT("create_time"); + sql.SELECT("remark"); + sql.SELECT("operator_id"); + sql.SELECT("operator_name"); + sql.SELECT("ext_1"); + sql.SELECT("ext_2"); + sql.SELECT("ext_3"); + sql.FROM("high_coupon_agent_record"); + applyWhere(sql, example, false); + + if (example != null && example.getOrderByClause() != null) { + sql.ORDER_BY(example.getOrderByClause()); + } + + return sql.toString(); + } + + public String updateByExampleSelective(Map parameter) { + HighCouponAgentRecord record = (HighCouponAgentRecord) parameter.get("record"); + HighCouponAgentRecordExample example = (HighCouponAgentRecordExample) parameter.get("example"); + + SQL sql = new SQL(); + sql.UPDATE("high_coupon_agent_record"); + + if (record.getId() != null) { + sql.SET("id = #{record.id,jdbcType=BIGINT}"); + } + + if (record.getCouponAgentId() != null) { + sql.SET("coupon_agent_id = #{record.couponAgentId,jdbcType=BIGINT}"); + } + + if (record.getCouponId() != null) { + sql.SET("coupon_id = #{record.couponId,jdbcType=BIGINT}"); + } + + if (record.getCouponName() != null) { + sql.SET("coupon_name = #{record.couponName,jdbcType=VARCHAR}"); + } + + if (record.getSalesPrice() != null) { + sql.SET("sales_price = #{record.salesPrice,jdbcType=DECIMAL}"); + } + + if (record.getAgentId() != null) { + sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); + } + + if (record.getAgentName() != null) { + sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); + } + + if (record.getStockCount() != null) { + sql.SET("stock_count = #{record.stockCount,jdbcType=INTEGER}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getRemark() != null) { + sql.SET("remark = #{record.remark,jdbcType=VARCHAR}"); + } + + if (record.getOperatorId() != null) { + sql.SET("operator_id = #{record.operatorId,jdbcType=BIGINT}"); + } + + if (record.getOperatorName() != null) { + sql.SET("operator_name = #{record.operatorName,jdbcType=VARCHAR}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + } + + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByExample(Map parameter) { + SQL sql = new SQL(); + sql.UPDATE("high_coupon_agent_record"); + + sql.SET("id = #{record.id,jdbcType=BIGINT}"); + sql.SET("coupon_agent_id = #{record.couponAgentId,jdbcType=BIGINT}"); + sql.SET("coupon_id = #{record.couponId,jdbcType=BIGINT}"); + sql.SET("coupon_name = #{record.couponName,jdbcType=VARCHAR}"); + sql.SET("sales_price = #{record.salesPrice,jdbcType=DECIMAL}"); + sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); + sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); + sql.SET("stock_count = #{record.stockCount,jdbcType=INTEGER}"); + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + sql.SET("remark = #{record.remark,jdbcType=VARCHAR}"); + sql.SET("operator_id = #{record.operatorId,jdbcType=BIGINT}"); + sql.SET("operator_name = #{record.operatorName,jdbcType=VARCHAR}"); + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + + HighCouponAgentRecordExample example = (HighCouponAgentRecordExample) parameter.get("example"); + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByPrimaryKeySelective(HighCouponAgentRecord record) { + SQL sql = new SQL(); + sql.UPDATE("high_coupon_agent_record"); + + if (record.getCouponAgentId() != null) { + sql.SET("coupon_agent_id = #{couponAgentId,jdbcType=BIGINT}"); + } + + if (record.getCouponId() != null) { + sql.SET("coupon_id = #{couponId,jdbcType=BIGINT}"); + } + + if (record.getCouponName() != null) { + sql.SET("coupon_name = #{couponName,jdbcType=VARCHAR}"); + } + + if (record.getSalesPrice() != null) { + sql.SET("sales_price = #{salesPrice,jdbcType=DECIMAL}"); + } + + if (record.getAgentId() != null) { + sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); + } + + if (record.getAgentName() != null) { + sql.SET("agent_name = #{agentName,jdbcType=VARCHAR}"); + } + + if (record.getStockCount() != null) { + sql.SET("stock_count = #{stockCount,jdbcType=INTEGER}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getRemark() != null) { + sql.SET("remark = #{remark,jdbcType=VARCHAR}"); + } + + if (record.getOperatorId() != null) { + sql.SET("operator_id = #{operatorId,jdbcType=BIGINT}"); + } + + if (record.getOperatorName() != null) { + sql.SET("operator_name = #{operatorName,jdbcType=VARCHAR}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); + } + + sql.WHERE("id = #{id,jdbcType=BIGINT}"); + + return sql.toString(); + } + + protected void applyWhere(SQL sql, HighCouponAgentRecordExample example, boolean includeExamplePhrase) { + if (example == null) { + return; + } + + String parmPhrase1; + String parmPhrase1_th; + String parmPhrase2; + String parmPhrase2_th; + String parmPhrase3; + String parmPhrase3_th; + if (includeExamplePhrase) { + parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } else { + parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } + + StringBuilder sb = new StringBuilder(); + List oredCriteria = example.getOredCriteria(); + boolean firstCriteria = true; + for (int i = 0; i < oredCriteria.size(); i++) { + Criteria criteria = oredCriteria.get(i); + if (criteria.isValid()) { + if (firstCriteria) { + firstCriteria = false; + } else { + sb.append(" or "); + } + + sb.append('('); + List criterions = criteria.getAllCriteria(); + boolean firstCriterion = true; + for (int j = 0; j < criterions.size(); j++) { + Criterion criterion = criterions.get(j); + if (firstCriterion) { + firstCriterion = false; + } else { + sb.append(" and "); + } + + if (criterion.isNoValue()) { + sb.append(criterion.getCondition()); + } else if (criterion.isSingleValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); + } else { + sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); + } + } else if (criterion.isBetweenValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); + } else { + sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); + } + } else if (criterion.isListValue()) { + sb.append(criterion.getCondition()); + sb.append(" ("); + List listItems = (List) criterion.getValue(); + boolean comma = false; + for (int k = 0; k < listItems.size(); k++) { + if (comma) { + sb.append(", "); + } else { + comma = true; + } + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase3, i, j, k)); + } else { + sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); + } + } + sb.append(')'); + } + } + sb.append(')'); + } + } + + if (sb.length() > 0) { + sql.WHERE(sb.toString()); + } + } +} \ No newline at end of file diff --git a/hai-service/src/main/java/com/hai/entity/HighCouponAgentCode.java b/hai-service/src/main/java/com/hai/entity/HighCouponAgentCode.java index 39ba9d5b..1fae72af 100644 --- a/hai-service/src/main/java/com/hai/entity/HighCouponAgentCode.java +++ b/hai-service/src/main/java/com/hai/entity/HighCouponAgentCode.java @@ -40,6 +40,11 @@ public class HighCouponAgentCode extends HighCouponAgentCodeModel implements Ser */ private Long couponCodeId; + /** + * 卡券分配给代理商库存记录id + */ + private Long couponAgentRecordId; + /** * 销售码 */ @@ -123,6 +128,14 @@ public class HighCouponAgentCode extends HighCouponAgentCodeModel implements Ser this.couponCodeId = couponCodeId; } + public Long getCouponAgentRecordId() { + return couponAgentRecordId; + } + + public void setCouponAgentRecordId(Long couponAgentRecordId) { + this.couponAgentRecordId = couponAgentRecordId; + } + public String getCouponCode() { return couponCode; } @@ -220,6 +233,7 @@ public class HighCouponAgentCode extends HighCouponAgentCodeModel implements Ser && (this.getCouponId() == null ? other.getCouponId() == null : this.getCouponId().equals(other.getCouponId())) && (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) && (this.getCouponCodeId() == null ? other.getCouponCodeId() == null : this.getCouponCodeId().equals(other.getCouponCodeId())) + && (this.getCouponAgentRecordId() == null ? other.getCouponAgentRecordId() == null : this.getCouponAgentRecordId().equals(other.getCouponAgentRecordId())) && (this.getCouponCode() == null ? other.getCouponCode() == null : this.getCouponCode().equals(other.getCouponCode())) && (this.getQrCode() == null ? other.getQrCode() == null : this.getQrCode().equals(other.getQrCode())) && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) @@ -241,6 +255,7 @@ public class HighCouponAgentCode extends HighCouponAgentCodeModel implements Ser result = prime * result + ((getCouponId() == null) ? 0 : getCouponId().hashCode()); result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); result = prime * result + ((getCouponCodeId() == null) ? 0 : getCouponCodeId().hashCode()); + result = prime * result + ((getCouponAgentRecordId() == null) ? 0 : getCouponAgentRecordId().hashCode()); result = prime * result + ((getCouponCode() == null) ? 0 : getCouponCode().hashCode()); result = prime * result + ((getQrCode() == null) ? 0 : getQrCode().hashCode()); result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); @@ -265,6 +280,7 @@ public class HighCouponAgentCode extends HighCouponAgentCodeModel implements Ser sb.append(", couponId=").append(couponId); sb.append(", agentId=").append(agentId); sb.append(", couponCodeId=").append(couponCodeId); + sb.append(", couponAgentRecordId=").append(couponAgentRecordId); sb.append(", couponCode=").append(couponCode); sb.append(", qrCode=").append(qrCode); sb.append(", status=").append(status); diff --git a/hai-service/src/main/java/com/hai/entity/HighCouponAgentCodeExample.java b/hai-service/src/main/java/com/hai/entity/HighCouponAgentCodeExample.java index bf211263..fbd038f7 100644 --- a/hai-service/src/main/java/com/hai/entity/HighCouponAgentCodeExample.java +++ b/hai-service/src/main/java/com/hai/entity/HighCouponAgentCodeExample.java @@ -425,6 +425,66 @@ public class HighCouponAgentCodeExample { return (Criteria) this; } + public Criteria andCouponAgentRecordIdIsNull() { + addCriterion("coupon_agent_record_id is null"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdIsNotNull() { + addCriterion("coupon_agent_record_id is not null"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdEqualTo(Long value) { + addCriterion("coupon_agent_record_id =", value, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdNotEqualTo(Long value) { + addCriterion("coupon_agent_record_id <>", value, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdGreaterThan(Long value) { + addCriterion("coupon_agent_record_id >", value, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdGreaterThanOrEqualTo(Long value) { + addCriterion("coupon_agent_record_id >=", value, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdLessThan(Long value) { + addCriterion("coupon_agent_record_id <", value, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdLessThanOrEqualTo(Long value) { + addCriterion("coupon_agent_record_id <=", value, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdIn(List values) { + addCriterion("coupon_agent_record_id in", values, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdNotIn(List values) { + addCriterion("coupon_agent_record_id not in", values, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdBetween(Long value1, Long value2) { + addCriterion("coupon_agent_record_id between", value1, value2, "couponAgentRecordId"); + return (Criteria) this; + } + + public Criteria andCouponAgentRecordIdNotBetween(Long value1, Long value2) { + addCriterion("coupon_agent_record_id not between", value1, value2, "couponAgentRecordId"); + return (Criteria) this; + } + public Criteria andCouponCodeIsNull() { addCriterion("coupon_code is null"); return (Criteria) this; diff --git a/hai-service/src/main/java/com/hai/entity/HighCouponAgentRecord.java b/hai-service/src/main/java/com/hai/entity/HighCouponAgentRecord.java new file mode 100644 index 00000000..7962accf --- /dev/null +++ b/hai-service/src/main/java/com/hai/entity/HighCouponAgentRecord.java @@ -0,0 +1,281 @@ +package com.hai.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + * high_coupon_agent_record + * @author + */ +/** + * + * 代码由工具生成 + * + **/ +public class HighCouponAgentRecord implements Serializable { + /** + * 主键 + */ + private Long id; + + /** + * 卡券和代理商的id + */ + private Long couponAgentId; + + /** + * 优惠券id + */ + private Long couponId; + + /** + * 卡券名称 + */ + private String couponName; + + /** + * 卡券销售价格 + */ + private BigDecimal salesPrice; + + /** + * 代理商id + */ + private Long agentId; + + /** + * 代理商名称 + */ + private String agentName; + + /** + * 库存数量 + */ + private Integer stockCount; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 备注 + */ + private String remark; + + /** + * 操作人 + */ + private Long operatorId; + + /** + * 操作人名称 + */ + private String operatorName; + + private String ext1; + + private String ext2; + + private String ext3; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getCouponAgentId() { + return couponAgentId; + } + + public void setCouponAgentId(Long couponAgentId) { + this.couponAgentId = couponAgentId; + } + + public Long getCouponId() { + return couponId; + } + + public void setCouponId(Long couponId) { + this.couponId = couponId; + } + + public String getCouponName() { + return couponName; + } + + public void setCouponName(String couponName) { + this.couponName = couponName; + } + + public BigDecimal getSalesPrice() { + return salesPrice; + } + + public void setSalesPrice(BigDecimal salesPrice) { + this.salesPrice = salesPrice; + } + + public Long getAgentId() { + return agentId; + } + + public void setAgentId(Long agentId) { + this.agentId = agentId; + } + + public String getAgentName() { + return agentName; + } + + public void setAgentName(String agentName) { + this.agentName = agentName; + } + + public Integer getStockCount() { + return stockCount; + } + + public void setStockCount(Integer stockCount) { + this.stockCount = stockCount; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public Long getOperatorId() { + return operatorId; + } + + public void setOperatorId(Long operatorId) { + this.operatorId = operatorId; + } + + public String getOperatorName() { + return operatorName; + } + + public void setOperatorName(String operatorName) { + this.operatorName = operatorName; + } + + public String getExt1() { + return ext1; + } + + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + public String getExt2() { + return ext2; + } + + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + public String getExt3() { + return ext3; + } + + 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; + } + HighCouponAgentRecord other = (HighCouponAgentRecord) that; + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getCouponAgentId() == null ? other.getCouponAgentId() == null : this.getCouponAgentId().equals(other.getCouponAgentId())) + && (this.getCouponId() == null ? other.getCouponId() == null : this.getCouponId().equals(other.getCouponId())) + && (this.getCouponName() == null ? other.getCouponName() == null : this.getCouponName().equals(other.getCouponName())) + && (this.getSalesPrice() == null ? other.getSalesPrice() == null : this.getSalesPrice().equals(other.getSalesPrice())) + && (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) + && (this.getAgentName() == null ? other.getAgentName() == null : this.getAgentName().equals(other.getAgentName())) + && (this.getStockCount() == null ? other.getStockCount() == null : this.getStockCount().equals(other.getStockCount())) + && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) + && (this.getRemark() == null ? other.getRemark() == null : this.getRemark().equals(other.getRemark())) + && (this.getOperatorId() == null ? other.getOperatorId() == null : this.getOperatorId().equals(other.getOperatorId())) + && (this.getOperatorName() == null ? other.getOperatorName() == null : this.getOperatorName().equals(other.getOperatorName())) + && (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 + ((getCouponAgentId() == null) ? 0 : getCouponAgentId().hashCode()); + result = prime * result + ((getCouponId() == null) ? 0 : getCouponId().hashCode()); + result = prime * result + ((getCouponName() == null) ? 0 : getCouponName().hashCode()); + result = prime * result + ((getSalesPrice() == null) ? 0 : getSalesPrice().hashCode()); + result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); + result = prime * result + ((getAgentName() == null) ? 0 : getAgentName().hashCode()); + result = prime * result + ((getStockCount() == null) ? 0 : getStockCount().hashCode()); + result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); + result = prime * result + ((getRemark() == null) ? 0 : getRemark().hashCode()); + result = prime * result + ((getOperatorId() == null) ? 0 : getOperatorId().hashCode()); + result = prime * result + ((getOperatorName() == null) ? 0 : getOperatorName().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(", couponAgentId=").append(couponAgentId); + sb.append(", couponId=").append(couponId); + sb.append(", couponName=").append(couponName); + sb.append(", salesPrice=").append(salesPrice); + sb.append(", agentId=").append(agentId); + sb.append(", agentName=").append(agentName); + sb.append(", stockCount=").append(stockCount); + sb.append(", createTime=").append(createTime); + sb.append(", remark=").append(remark); + sb.append(", operatorId=").append(operatorId); + sb.append(", operatorName=").append(operatorName); + 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/hai-service/src/main/java/com/hai/entity/HighCouponAgentRecordExample.java b/hai-service/src/main/java/com/hai/entity/HighCouponAgentRecordExample.java new file mode 100644 index 00000000..89b1eb11 --- /dev/null +++ b/hai-service/src/main/java/com/hai/entity/HighCouponAgentRecordExample.java @@ -0,0 +1,1194 @@ +package com.hai.entity; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class HighCouponAgentRecordExample { + protected String orderByClause; + + protected boolean distinct; + + protected List oredCriteria; + + private Integer limit; + + private Long offset; + + public HighCouponAgentRecordExample() { + oredCriteria = new ArrayList(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + public void setLimit(Integer limit) { + this.limit = limit; + } + + public Integer getLimit() { + return limit; + } + + public void setOffset(Long offset) { + this.offset = offset; + } + + public Long getOffset() { + return offset; + } + + protected abstract static class GeneratedCriteria { + protected List criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List getAllCriteria() { + return criteria; + } + + public List getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Long value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Long value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Long value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Long value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Long value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Long value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Long value1, Long value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Long value1, Long value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdIsNull() { + addCriterion("coupon_agent_id is null"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdIsNotNull() { + addCriterion("coupon_agent_id is not null"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdEqualTo(Long value) { + addCriterion("coupon_agent_id =", value, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdNotEqualTo(Long value) { + addCriterion("coupon_agent_id <>", value, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdGreaterThan(Long value) { + addCriterion("coupon_agent_id >", value, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdGreaterThanOrEqualTo(Long value) { + addCriterion("coupon_agent_id >=", value, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdLessThan(Long value) { + addCriterion("coupon_agent_id <", value, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdLessThanOrEqualTo(Long value) { + addCriterion("coupon_agent_id <=", value, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdIn(List values) { + addCriterion("coupon_agent_id in", values, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdNotIn(List values) { + addCriterion("coupon_agent_id not in", values, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdBetween(Long value1, Long value2) { + addCriterion("coupon_agent_id between", value1, value2, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponAgentIdNotBetween(Long value1, Long value2) { + addCriterion("coupon_agent_id not between", value1, value2, "couponAgentId"); + return (Criteria) this; + } + + public Criteria andCouponIdIsNull() { + addCriterion("coupon_id is null"); + return (Criteria) this; + } + + public Criteria andCouponIdIsNotNull() { + addCriterion("coupon_id is not null"); + return (Criteria) this; + } + + public Criteria andCouponIdEqualTo(Long value) { + addCriterion("coupon_id =", value, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdNotEqualTo(Long value) { + addCriterion("coupon_id <>", value, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdGreaterThan(Long value) { + addCriterion("coupon_id >", value, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdGreaterThanOrEqualTo(Long value) { + addCriterion("coupon_id >=", value, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdLessThan(Long value) { + addCriterion("coupon_id <", value, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdLessThanOrEqualTo(Long value) { + addCriterion("coupon_id <=", value, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdIn(List values) { + addCriterion("coupon_id in", values, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdNotIn(List values) { + addCriterion("coupon_id not in", values, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdBetween(Long value1, Long value2) { + addCriterion("coupon_id between", value1, value2, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponIdNotBetween(Long value1, Long value2) { + addCriterion("coupon_id not between", value1, value2, "couponId"); + return (Criteria) this; + } + + public Criteria andCouponNameIsNull() { + addCriterion("coupon_name is null"); + return (Criteria) this; + } + + public Criteria andCouponNameIsNotNull() { + addCriterion("coupon_name is not null"); + return (Criteria) this; + } + + public Criteria andCouponNameEqualTo(String value) { + addCriterion("coupon_name =", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameNotEqualTo(String value) { + addCriterion("coupon_name <>", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameGreaterThan(String value) { + addCriterion("coupon_name >", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameGreaterThanOrEqualTo(String value) { + addCriterion("coupon_name >=", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameLessThan(String value) { + addCriterion("coupon_name <", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameLessThanOrEqualTo(String value) { + addCriterion("coupon_name <=", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameLike(String value) { + addCriterion("coupon_name like", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameNotLike(String value) { + addCriterion("coupon_name not like", value, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameIn(List values) { + addCriterion("coupon_name in", values, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameNotIn(List values) { + addCriterion("coupon_name not in", values, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameBetween(String value1, String value2) { + addCriterion("coupon_name between", value1, value2, "couponName"); + return (Criteria) this; + } + + public Criteria andCouponNameNotBetween(String value1, String value2) { + addCriterion("coupon_name not between", value1, value2, "couponName"); + return (Criteria) this; + } + + public Criteria andSalesPriceIsNull() { + addCriterion("sales_price is null"); + return (Criteria) this; + } + + public Criteria andSalesPriceIsNotNull() { + addCriterion("sales_price is not null"); + return (Criteria) this; + } + + public Criteria andSalesPriceEqualTo(BigDecimal value) { + addCriterion("sales_price =", value, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceNotEqualTo(BigDecimal value) { + addCriterion("sales_price <>", value, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceGreaterThan(BigDecimal value) { + addCriterion("sales_price >", value, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceGreaterThanOrEqualTo(BigDecimal value) { + addCriterion("sales_price >=", value, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceLessThan(BigDecimal value) { + addCriterion("sales_price <", value, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceLessThanOrEqualTo(BigDecimal value) { + addCriterion("sales_price <=", value, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceIn(List values) { + addCriterion("sales_price in", values, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceNotIn(List values) { + addCriterion("sales_price not in", values, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("sales_price between", value1, value2, "salesPrice"); + return (Criteria) this; + } + + public Criteria andSalesPriceNotBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("sales_price not between", value1, value2, "salesPrice"); + return (Criteria) this; + } + + public Criteria andAgentIdIsNull() { + addCriterion("agent_id is null"); + return (Criteria) this; + } + + public Criteria andAgentIdIsNotNull() { + addCriterion("agent_id is not null"); + return (Criteria) this; + } + + public Criteria andAgentIdEqualTo(Long value) { + addCriterion("agent_id =", value, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdNotEqualTo(Long value) { + addCriterion("agent_id <>", value, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdGreaterThan(Long value) { + addCriterion("agent_id >", value, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdGreaterThanOrEqualTo(Long value) { + addCriterion("agent_id >=", value, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdLessThan(Long value) { + addCriterion("agent_id <", value, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdLessThanOrEqualTo(Long value) { + addCriterion("agent_id <=", value, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdIn(List values) { + addCriterion("agent_id in", values, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdNotIn(List values) { + addCriterion("agent_id not in", values, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdBetween(Long value1, Long value2) { + addCriterion("agent_id between", value1, value2, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentIdNotBetween(Long value1, Long value2) { + addCriterion("agent_id not between", value1, value2, "agentId"); + return (Criteria) this; + } + + public Criteria andAgentNameIsNull() { + addCriterion("agent_name is null"); + return (Criteria) this; + } + + public Criteria andAgentNameIsNotNull() { + addCriterion("agent_name is not null"); + return (Criteria) this; + } + + public Criteria andAgentNameEqualTo(String value) { + addCriterion("agent_name =", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameNotEqualTo(String value) { + addCriterion("agent_name <>", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameGreaterThan(String value) { + addCriterion("agent_name >", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameGreaterThanOrEqualTo(String value) { + addCriterion("agent_name >=", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameLessThan(String value) { + addCriterion("agent_name <", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameLessThanOrEqualTo(String value) { + addCriterion("agent_name <=", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameLike(String value) { + addCriterion("agent_name like", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameNotLike(String value) { + addCriterion("agent_name not like", value, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameIn(List values) { + addCriterion("agent_name in", values, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameNotIn(List values) { + addCriterion("agent_name not in", values, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameBetween(String value1, String value2) { + addCriterion("agent_name between", value1, value2, "agentName"); + return (Criteria) this; + } + + public Criteria andAgentNameNotBetween(String value1, String value2) { + addCriterion("agent_name not between", value1, value2, "agentName"); + return (Criteria) this; + } + + public Criteria andStockCountIsNull() { + addCriterion("stock_count is null"); + return (Criteria) this; + } + + public Criteria andStockCountIsNotNull() { + addCriterion("stock_count is not null"); + return (Criteria) this; + } + + public Criteria andStockCountEqualTo(Integer value) { + addCriterion("stock_count =", value, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountNotEqualTo(Integer value) { + addCriterion("stock_count <>", value, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountGreaterThan(Integer value) { + addCriterion("stock_count >", value, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountGreaterThanOrEqualTo(Integer value) { + addCriterion("stock_count >=", value, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountLessThan(Integer value) { + addCriterion("stock_count <", value, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountLessThanOrEqualTo(Integer value) { + addCriterion("stock_count <=", value, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountIn(List values) { + addCriterion("stock_count in", values, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountNotIn(List values) { + addCriterion("stock_count not in", values, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountBetween(Integer value1, Integer value2) { + addCriterion("stock_count between", value1, value2, "stockCount"); + return (Criteria) this; + } + + public Criteria andStockCountNotBetween(Integer value1, Integer value2) { + addCriterion("stock_count not between", value1, value2, "stockCount"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNull() { + addCriterion("create_time is null"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNotNull() { + addCriterion("create_time is not null"); + return (Criteria) this; + } + + public Criteria andCreateTimeEqualTo(Date value) { + addCriterion("create_time =", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotEqualTo(Date value) { + addCriterion("create_time <>", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThan(Date value) { + addCriterion("create_time >", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { + addCriterion("create_time >=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThan(Date value) { + addCriterion("create_time <", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThanOrEqualTo(Date value) { + addCriterion("create_time <=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeIn(List values) { + addCriterion("create_time in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotIn(List values) { + addCriterion("create_time not in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeBetween(Date value1, Date value2) { + addCriterion("create_time between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotBetween(Date value1, Date value2) { + addCriterion("create_time not between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andRemarkIsNull() { + addCriterion("remark is null"); + return (Criteria) this; + } + + public Criteria andRemarkIsNotNull() { + addCriterion("remark is not null"); + return (Criteria) this; + } + + public Criteria andRemarkEqualTo(String value) { + addCriterion("remark =", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkNotEqualTo(String value) { + addCriterion("remark <>", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkGreaterThan(String value) { + addCriterion("remark >", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkGreaterThanOrEqualTo(String value) { + addCriterion("remark >=", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkLessThan(String value) { + addCriterion("remark <", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkLessThanOrEqualTo(String value) { + addCriterion("remark <=", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkLike(String value) { + addCriterion("remark like", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkNotLike(String value) { + addCriterion("remark not like", value, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkIn(List values) { + addCriterion("remark in", values, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkNotIn(List values) { + addCriterion("remark not in", values, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkBetween(String value1, String value2) { + addCriterion("remark between", value1, value2, "remark"); + return (Criteria) this; + } + + public Criteria andRemarkNotBetween(String value1, String value2) { + addCriterion("remark not between", value1, value2, "remark"); + return (Criteria) this; + } + + public Criteria andOperatorIdIsNull() { + addCriterion("operator_id is null"); + return (Criteria) this; + } + + public Criteria andOperatorIdIsNotNull() { + addCriterion("operator_id is not null"); + return (Criteria) this; + } + + public Criteria andOperatorIdEqualTo(Long value) { + addCriterion("operator_id =", value, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdNotEqualTo(Long value) { + addCriterion("operator_id <>", value, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdGreaterThan(Long value) { + addCriterion("operator_id >", value, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdGreaterThanOrEqualTo(Long value) { + addCriterion("operator_id >=", value, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdLessThan(Long value) { + addCriterion("operator_id <", value, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdLessThanOrEqualTo(Long value) { + addCriterion("operator_id <=", value, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdIn(List values) { + addCriterion("operator_id in", values, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdNotIn(List values) { + addCriterion("operator_id not in", values, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdBetween(Long value1, Long value2) { + addCriterion("operator_id between", value1, value2, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorIdNotBetween(Long value1, Long value2) { + addCriterion("operator_id not between", value1, value2, "operatorId"); + return (Criteria) this; + } + + public Criteria andOperatorNameIsNull() { + addCriterion("operator_name is null"); + return (Criteria) this; + } + + public Criteria andOperatorNameIsNotNull() { + addCriterion("operator_name is not null"); + return (Criteria) this; + } + + public Criteria andOperatorNameEqualTo(String value) { + addCriterion("operator_name =", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameNotEqualTo(String value) { + addCriterion("operator_name <>", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameGreaterThan(String value) { + addCriterion("operator_name >", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameGreaterThanOrEqualTo(String value) { + addCriterion("operator_name >=", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameLessThan(String value) { + addCriterion("operator_name <", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameLessThanOrEqualTo(String value) { + addCriterion("operator_name <=", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameLike(String value) { + addCriterion("operator_name like", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameNotLike(String value) { + addCriterion("operator_name not like", value, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameIn(List values) { + addCriterion("operator_name in", values, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameNotIn(List values) { + addCriterion("operator_name not in", values, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameBetween(String value1, String value2) { + addCriterion("operator_name between", value1, value2, "operatorName"); + return (Criteria) this; + } + + public Criteria andOperatorNameNotBetween(String value1, String value2) { + addCriterion("operator_name not between", value1, value2, "operatorName"); + return (Criteria) this; + } + + public Criteria andExt1IsNull() { + addCriterion("ext_1 is null"); + return (Criteria) this; + } + + public Criteria andExt1IsNotNull() { + addCriterion("ext_1 is not null"); + return (Criteria) this; + } + + public Criteria andExt1EqualTo(String value) { + addCriterion("ext_1 =", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotEqualTo(String value) { + addCriterion("ext_1 <>", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThan(String value) { + addCriterion("ext_1 >", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThanOrEqualTo(String value) { + addCriterion("ext_1 >=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThan(String value) { + addCriterion("ext_1 <", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThanOrEqualTo(String value) { + addCriterion("ext_1 <=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Like(String value) { + addCriterion("ext_1 like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotLike(String value) { + addCriterion("ext_1 not like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1In(List values) { + addCriterion("ext_1 in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotIn(List values) { + addCriterion("ext_1 not in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Between(String value1, String value2) { + addCriterion("ext_1 between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotBetween(String value1, String value2) { + addCriterion("ext_1 not between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt2IsNull() { + addCriterion("ext_2 is null"); + return (Criteria) this; + } + + public Criteria andExt2IsNotNull() { + addCriterion("ext_2 is not null"); + return (Criteria) this; + } + + public Criteria andExt2EqualTo(String value) { + addCriterion("ext_2 =", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotEqualTo(String value) { + addCriterion("ext_2 <>", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThan(String value) { + addCriterion("ext_2 >", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThanOrEqualTo(String value) { + addCriterion("ext_2 >=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThan(String value) { + addCriterion("ext_2 <", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThanOrEqualTo(String value) { + addCriterion("ext_2 <=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Like(String value) { + addCriterion("ext_2 like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotLike(String value) { + addCriterion("ext_2 not like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2In(List values) { + addCriterion("ext_2 in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotIn(List values) { + addCriterion("ext_2 not in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Between(String value1, String value2) { + addCriterion("ext_2 between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotBetween(String value1, String value2) { + addCriterion("ext_2 not between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt3IsNull() { + addCriterion("ext_3 is null"); + return (Criteria) this; + } + + public Criteria andExt3IsNotNull() { + addCriterion("ext_3 is not null"); + return (Criteria) this; + } + + public Criteria andExt3EqualTo(String value) { + addCriterion("ext_3 =", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotEqualTo(String value) { + addCriterion("ext_3 <>", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThan(String value) { + addCriterion("ext_3 >", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThanOrEqualTo(String value) { + addCriterion("ext_3 >=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThan(String value) { + addCriterion("ext_3 <", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThanOrEqualTo(String value) { + addCriterion("ext_3 <=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Like(String value) { + addCriterion("ext_3 like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotLike(String value) { + addCriterion("ext_3 not like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3In(List values) { + addCriterion("ext_3 in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotIn(List values) { + addCriterion("ext_3 not in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Between(String value1, String value2) { + addCriterion("ext_3 between", value1, value2, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotBetween(String value1, String value2) { + addCriterion("ext_3 not between", value1, value2, "ext3"); + return (Criteria) this; + } + } + + /** + */ + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} \ No newline at end of file diff --git a/hai-service/src/main/java/com/hai/service/HighCouponAgentService.java b/hai-service/src/main/java/com/hai/service/HighCouponAgentService.java index 793a15ad..b385692c 100644 --- a/hai-service/src/main/java/com/hai/service/HighCouponAgentService.java +++ b/hai-service/src/main/java/com/hai/service/HighCouponAgentService.java @@ -19,7 +19,7 @@ public interface HighCouponAgentService { * @Description 卡券分配给代理商 * @Date 2021/4/20 23:01 **/ - void assignCouponAgent(HighCouponAgentRel highCouponAgentRel); + void assignCouponAgent(HighCouponAgentRel highCouponAgentRel,Integer stockCount); /** * @Author 胡锐 diff --git a/hai-service/src/main/java/com/hai/service/impl/HighCouponAgentServiceImpl.java b/hai-service/src/main/java/com/hai/service/impl/HighCouponAgentServiceImpl.java index e981bc30..6a76356f 100644 --- a/hai-service/src/main/java/com/hai/service/impl/HighCouponAgentServiceImpl.java +++ b/hai-service/src/main/java/com/hai/service/impl/HighCouponAgentServiceImpl.java @@ -7,9 +7,11 @@ import com.hai.common.exception.SysCode; import com.hai.common.utils.DateUtil; import com.hai.common.utils.ResponseMsgUtil; import com.hai.dao.HighCouponAgentCodeMapper; +import com.hai.dao.HighCouponAgentRecordMapper; import com.hai.dao.HighCouponAgentRelMapper; import com.hai.entity.*; import com.hai.model.AgentSalesModel; +import com.hai.service.HighAgentService; import com.hai.service.HighCouponAgentService; import com.hai.service.HighCouponCodeService; import com.hai.service.HighCouponService; @@ -39,14 +41,20 @@ public class HighCouponAgentServiceImpl implements HighCouponAgentService { @Resource private HighCouponAgentCodeMapper highCouponAgentCodeMapper; + @Resource + private HighCouponAgentRecordMapper highCouponAgentRecordMapper; + @Resource private HighCouponCodeService highCouponCodeService; @Resource private HighCouponService highCouponService; + @Resource + private HighAgentService highAgentService; + @Override - public void assignCouponAgent(HighCouponAgentRel highCouponAgentRel) { + public void assignCouponAgent(HighCouponAgentRel highCouponAgentRel,Integer stockCount) { // 查询卡券库存数量 Map map = new HashMap<>(); @@ -56,14 +64,36 @@ public class HighCouponAgentServiceImpl implements HighCouponAgentService { map.put("isAssignAgent", false); List codeList = highCouponCodeService.getCouponCodeList(map); - - if (highCouponAgentRel.getStockCount() > codeList.size()) { + if (stockCount > codeList.size()) { throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "无法分配,分配数量超过库存数量"); } + if (highCouponAgentRel.getId() != null) { + highCouponAgentRelMapper.updateByPrimaryKey(highCouponAgentRel); + } else { + highCouponAgentRelMapper.insert(highCouponAgentRel); + } - highCouponAgentRelMapper.insert(highCouponAgentRel); - - List assignCouponCodeList = codeList.stream().limit(highCouponAgentRel.getStockCount()).collect(Collectors.toList()); + // 查询代理商 + HighAgent highAgent = highAgentService.findByAgentMsgId(highCouponAgentRel.getAgentId()); + + // 查询卡券 + HighCoupon highCoupon = highCouponService.getCouponById(highCouponAgentRel.getCouponId()); + + // 库存记录 + HighCouponAgentRecord record = new HighCouponAgentRecord(); + record.setCouponAgentId(highCouponAgentRel.getId()); + record.setCouponId(highCouponAgentRel.getCouponId()); + record.setCouponName(highCoupon.getCouponName()); + record.setSalesPrice(highCoupon.getSalesPrice()); + record.setAgentId(highCouponAgentRel.getAgentId()); + record.setAgentName(highAgent.getAgentName()); + record.setStockCount(stockCount); + record.setOperatorId(highCouponAgentRel.getOperatorId()); + record.setOperatorName(highCouponAgentRel.getOperatorName()); + record.setCreateTime(new Date()); + highCouponAgentRecordMapper.insert(record); + + List assignCouponCodeList = codeList.stream().limit(stockCount).collect(Collectors.toList()); HighCouponAgentCode highCouponAgentCode; for (HighCouponCode code : assignCouponCodeList) { code.setAgentId(highCouponAgentRel.getAgentId()); @@ -72,6 +102,7 @@ public class HighCouponAgentServiceImpl implements HighCouponAgentService { highCouponAgentCode = new HighCouponAgentCode(); highCouponAgentCode.setCouponAgentId(highCouponAgentRel.getId()); + highCouponAgentCode.setCouponAgentRecordId(record.getId()); highCouponAgentCode.setCouponId(code.getCouponId()); highCouponAgentCode.setAgentId(highCouponAgentRel.getAgentId()); highCouponAgentCode.setCouponCodeId(code.getId());