'可以多次分配卡券给代理商'

dev-discount
199901012 4 years ago
parent 32ffe298d5
commit 4db8ade1cc
  1. 29
      hai-bweb/src/main/java/com/bweb/controller/HighCouponAgentController.java
  2. 4
      hai-bweb/src/main/resources/dev/application.yml
  3. 28
      hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeMapper.java
  4. 14
      hai-service/src/main/java/com/hai/dao/HighCouponAgentCodeSqlProvider.java
  5. 139
      hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapper.java
  6. 7
      hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordMapperExt.java
  7. 374
      hai-service/src/main/java/com/hai/dao/HighCouponAgentRecordSqlProvider.java
  8. 16
      hai-service/src/main/java/com/hai/entity/HighCouponAgentCode.java
  9. 60
      hai-service/src/main/java/com/hai/entity/HighCouponAgentCodeExample.java
  10. 281
      hai-service/src/main/java/com/hai/entity/HighCouponAgentRecord.java
  11. 1194
      hai-service/src/main/java/com/hai/entity/HighCouponAgentRecordExample.java
  12. 2
      hai-service/src/main/java/com/hai/service/HighCouponAgentService.java
  13. 43
      hai-service/src/main/java/com/hai/service/impl/HighCouponAgentServiceImpl.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) {

@ -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

@ -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},",

@ -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}");
}

@ -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<HighCouponAgentRecord> 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);
}

@ -0,0 +1,7 @@
package com.hai.dao;
/**
* mapper扩展类
*/
public interface HighCouponAgentRecordMapperExt {
}

@ -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<String, Object> 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<String, Object> 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<Criteria> 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<Criterion> 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());
}
}
}

@ -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);

@ -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<Long> values) {
addCriterion("coupon_agent_record_id in", values, "couponAgentRecordId");
return (Criteria) this;
}
public Criteria andCouponAgentRecordIdNotIn(List<Long> 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;

@ -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();
}
}

@ -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 胡锐

@ -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<String,Object> map = new HashMap<>();
@ -56,14 +64,36 @@ public class HighCouponAgentServiceImpl implements HighCouponAgentService {
map.put("isAssignAgent", false);
List<HighCouponCode> 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<HighCouponCode> 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<HighCouponCode> 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());

Loading…
Cancel
Save