parent
d541bea107
commit
dded298ed2
@ -0,0 +1,115 @@ |
||||
package com.bweb.controller; |
||||
|
||||
import com.hai.common.exception.ErrorCode; |
||||
import com.hai.common.exception.ErrorHelp; |
||||
import com.hai.common.exception.SysCode; |
||||
import com.hai.common.security.SessionObject; |
||||
import com.hai.common.security.UserCenter; |
||||
import com.hai.common.utils.ResponseMsgUtil; |
||||
import com.hai.entity.HighAgent; |
||||
import com.hai.entity.HighCoupon; |
||||
import com.hai.entity.HighCouponAgentRel; |
||||
import com.hai.model.HighAgentModel; |
||||
import com.hai.model.ResponseData; |
||||
import com.hai.model.UserInfoModel; |
||||
import com.hai.service.HighAgentService; |
||||
import com.hai.service.HighCouponAgentService; |
||||
import com.hai.service.HighCouponService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import org.apache.commons.lang3.StringUtils; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.stereotype.Controller; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestMethod; |
||||
import org.springframework.web.bind.annotation.ResponseBody; |
||||
|
||||
import javax.annotation.Resource; |
||||
import javax.servlet.http.HttpServletRequest; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* @Auther: 胡锐 |
||||
* @Description: |
||||
* @Date: 2021/4/20 23:47 |
||||
*/ |
||||
@Controller |
||||
@RequestMapping(value = "/highCouponAgent") |
||||
@Api(value = "代理商接口") |
||||
public class HighCouponAgentController { |
||||
|
||||
private static Logger log = LoggerFactory.getLogger(HighCouponAgentController.class); |
||||
|
||||
@Resource |
||||
private HighCouponAgentService highCouponAgentService; |
||||
|
||||
@Resource |
||||
private HighAgentService highAgentService; |
||||
|
||||
@Autowired |
||||
private UserCenter userCenter; |
||||
|
||||
@Resource |
||||
private HighCouponService highCouponService; |
||||
|
||||
@RequestMapping(value = "/assignCouponAgent", method = RequestMethod.POST) |
||||
@ResponseBody |
||||
@ApiOperation(value = "分配卡券给代理商") |
||||
public ResponseData assignCouponAgent(@RequestBody HighCouponAgentRel highCouponAgentRel, HttpServletRequest request) { |
||||
try { |
||||
//发布人员
|
||||
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||
if (userInfoModel.getBsCompany() == null) { |
||||
log.error("HighAgentController -> insertAgent() error!","该主角色没有权限"); |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.MENU_TREE_HAS_NOT_ERROR, ""); |
||||
} |
||||
|
||||
if(highCouponAgentRel.getCouponId() == null |
||||
|| highCouponAgentRel.getAgentId() == null |
||||
|| highCouponAgentRel.getStockCount() == null) { |
||||
log.error("HighAgentController -> insertAgent() error!","参数错误"); |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
||||
} |
||||
|
||||
// 查询卡券详情
|
||||
HighCoupon coupon = highCouponService.getCouponById(highCouponAgentRel.getCouponId()); |
||||
if (coupon == null) { |
||||
log.error("HighAgentController -> insertAgent() error!","未找到卡券信息"); |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.NOT_FOUND_COUPON, ""); |
||||
} |
||||
|
||||
// 查询代理商
|
||||
HighAgent highAgent = highAgentService.findByAgentMsgId(highCouponAgentRel.getAgentId()); |
||||
if (highAgent == null) { |
||||
log.error("HighAgentController -> insertAgent() error!","未找到代理商信息"); |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.NOT_FOUND_AGENT, ""); |
||||
} |
||||
|
||||
// 校验是否重复分配
|
||||
if (highCouponAgentService.getRelByCouponAgent(highCouponAgentRel.getCouponId(),highCouponAgentRel.getAgentId()) != null) { |
||||
log.error("HighAgentController -> insertAgent() error!","参数错误"); |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, coupon.getCouponName() + "已分配给" + highAgent.getAgentName()); |
||||
} |
||||
|
||||
highCouponAgentRel.setCouponName(coupon.getCouponName()); |
||||
highCouponAgentRel.setSalesPrice(coupon.getSalesPrice()); |
||||
highCouponAgentRel.setStatus(1); // 状态 0:删除 1:正常
|
||||
highCouponAgentRel.setCreateTime(new Date()); |
||||
highCouponAgentRel.setOperatorId(userInfoModel.getSecUser().getId()); |
||||
highCouponAgentRel.setOperatorName(userInfoModel.getSecUser().getUserName()); |
||||
highCouponAgentService.assignCouponAgent(highCouponAgentRel); |
||||
|
||||
return ResponseMsgUtil.success("分配成功"); |
||||
|
||||
} catch (Exception e) { |
||||
log.error("HighAgentController --> assignCouponAgent() error!", e); |
||||
return ResponseMsgUtil.exception(e); |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,133 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.HighCouponAgentCode; |
||||
import com.hai.entity.HighCouponAgentCodeExample; |
||||
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 HighCouponAgentCodeMapper extends HighCouponAgentCodeMapperExt { |
||||
@SelectProvider(type=HighCouponAgentCodeSqlProvider.class, method="countByExample") |
||||
long countByExample(HighCouponAgentCodeExample example); |
||||
|
||||
@DeleteProvider(type=HighCouponAgentCodeSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(HighCouponAgentCodeExample example); |
||||
|
||||
@Delete({ |
||||
"delete from high_coupon_agent_code", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into high_coupon_agent_code (coupon_agent_id, coupon_id, ", |
||||
"agent_id, coupon_code_id, ", |
||||
"coupon_code, qr_code, ", |
||||
"`status`, 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}, #{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); |
||||
|
||||
@InsertProvider(type=HighCouponAgentCodeSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(HighCouponAgentCode record); |
||||
|
||||
@SelectProvider(type=HighCouponAgentCodeSqlProvider.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="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="coupon_code_id", property="couponCodeId", 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), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@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<HighCouponAgentCode> selectByExample(HighCouponAgentCodeExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, coupon_agent_id, coupon_id, agent_id, coupon_code_id, coupon_code, qr_code, ", |
||||
"`status`, create_time, operator_id, operator_name, ext_1, ext_2, ext_3", |
||||
"from high_coupon_agent_code", |
||||
"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="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="coupon_code_id", property="couponCodeId", 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), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@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) |
||||
}) |
||||
HighCouponAgentCode selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentCodeSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") HighCouponAgentCode record, @Param("example") HighCouponAgentCodeExample example); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentCodeSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") HighCouponAgentCode record, @Param("example") HighCouponAgentCodeExample example); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentCodeSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(HighCouponAgentCode record); |
||||
|
||||
@Update({ |
||||
"update high_coupon_agent_code", |
||||
"set coupon_agent_id = #{couponAgentId,jdbcType=BIGINT},", |
||||
"coupon_id = #{couponId,jdbcType=BIGINT},", |
||||
"agent_id = #{agentId,jdbcType=BIGINT},", |
||||
"coupon_code_id = #{couponCodeId,jdbcType=BIGINT},", |
||||
"coupon_code = #{couponCode,jdbcType=VARCHAR},", |
||||
"qr_code = #{qrCode,jdbcType=VARCHAR},", |
||||
"`status` = #{status,jdbcType=INTEGER},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"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(HighCouponAgentCode record); |
||||
} |
@ -0,0 +1,7 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface HighCouponAgentCodeMapperExt { |
||||
} |
@ -0,0 +1,360 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.HighCouponAgentCode; |
||||
import com.hai.entity.HighCouponAgentCodeExample.Criteria; |
||||
import com.hai.entity.HighCouponAgentCodeExample.Criterion; |
||||
import com.hai.entity.HighCouponAgentCodeExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class HighCouponAgentCodeSqlProvider { |
||||
|
||||
public String countByExample(HighCouponAgentCodeExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("high_coupon_agent_code"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(HighCouponAgentCodeExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("high_coupon_agent_code"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(HighCouponAgentCode record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("high_coupon_agent_code"); |
||||
|
||||
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.getAgentId() != null) { |
||||
sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponCodeId() != null) { |
||||
sql.VALUES("coupon_code_id", "#{couponCodeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponCode() != null) { |
||||
sql.VALUES("coupon_code", "#{couponCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getQrCode() != null) { |
||||
sql.VALUES("qr_code", "#{qrCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
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(HighCouponAgentCodeExample 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("agent_id"); |
||||
sql.SELECT("coupon_code_id"); |
||||
sql.SELECT("coupon_code"); |
||||
sql.SELECT("qr_code"); |
||||
sql.SELECT("`status`"); |
||||
sql.SELECT("create_time"); |
||||
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_code"); |
||||
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) { |
||||
HighCouponAgentCode record = (HighCouponAgentCode) parameter.get("record"); |
||||
HighCouponAgentCodeExample example = (HighCouponAgentCodeExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("high_coupon_agent_code"); |
||||
|
||||
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.getAgentId() != null) { |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponCodeId() != null) { |
||||
sql.SET("coupon_code_id = #{record.couponCodeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponCode() != null) { |
||||
sql.SET("coupon_code = #{record.couponCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getQrCode() != null) { |
||||
sql.SET("qr_code = #{record.qrCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
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_code"); |
||||
|
||||
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("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
sql.SET("coupon_code_id = #{record.couponCodeId,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}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
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}"); |
||||
|
||||
HighCouponAgentCodeExample example = (HighCouponAgentCodeExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(HighCouponAgentCode record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("high_coupon_agent_code"); |
||||
|
||||
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.getAgentId() != null) { |
||||
sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponCodeId() != null) { |
||||
sql.SET("coupon_code_id = #{couponCodeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponCode() != null) { |
||||
sql.SET("coupon_code = #{couponCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getQrCode() != null) { |
||||
sql.SET("qr_code = #{qrCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
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, HighCouponAgentCodeExample 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()); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,130 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.HighCouponAgentRel; |
||||
import com.hai.entity.HighCouponAgentRelExample; |
||||
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 HighCouponAgentRelMapper extends HighCouponAgentRelMapperExt { |
||||
@SelectProvider(type=HighCouponAgentRelSqlProvider.class, method="countByExample") |
||||
long countByExample(HighCouponAgentRelExample example); |
||||
|
||||
@DeleteProvider(type=HighCouponAgentRelSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(HighCouponAgentRelExample example); |
||||
|
||||
@Delete({ |
||||
"delete from high_coupon_agent_rel", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into high_coupon_agent_rel (coupon_name, sales_price, ", |
||||
"coupon_id, agent_id, ", |
||||
"stock_count, create_time, ", |
||||
"`status`, operator_id, ", |
||||
"operator_name, ext_1, ", |
||||
"ext_2, ext_3)", |
||||
"values (#{couponName,jdbcType=VARCHAR}, #{salesPrice,jdbcType=DECIMAL}, ", |
||||
"#{couponId,jdbcType=BIGINT}, #{agentId,jdbcType=BIGINT}, ", |
||||
"#{stockCount,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", |
||||
"#{status,jdbcType=INTEGER}, #{operatorId,jdbcType=BIGINT}, ", |
||||
"#{operatorName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", |
||||
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(HighCouponAgentRel record); |
||||
|
||||
@InsertProvider(type=HighCouponAgentRelSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(HighCouponAgentRel record); |
||||
|
||||
@SelectProvider(type=HighCouponAgentRelSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="coupon_name", property="couponName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="sales_price", property="salesPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="stock_count", property="stockCount", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@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<HighCouponAgentRel> selectByExample(HighCouponAgentRelExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, coupon_name, sales_price, coupon_id, agent_id, stock_count, create_time, ", |
||||
"`status`, operator_id, operator_name, ext_1, ext_2, ext_3", |
||||
"from high_coupon_agent_rel", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="coupon_name", property="couponName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="sales_price", property="salesPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="stock_count", property="stockCount", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@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) |
||||
}) |
||||
HighCouponAgentRel selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentRelSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") HighCouponAgentRel record, @Param("example") HighCouponAgentRelExample example); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentRelSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") HighCouponAgentRel record, @Param("example") HighCouponAgentRelExample example); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentRelSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(HighCouponAgentRel record); |
||||
|
||||
@Update({ |
||||
"update high_coupon_agent_rel", |
||||
"set coupon_name = #{couponName,jdbcType=VARCHAR},", |
||||
"sales_price = #{salesPrice,jdbcType=DECIMAL},", |
||||
"coupon_id = #{couponId,jdbcType=BIGINT},", |
||||
"agent_id = #{agentId,jdbcType=BIGINT},", |
||||
"stock_count = #{stockCount,jdbcType=INTEGER},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"`status` = #{status,jdbcType=INTEGER},", |
||||
"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(HighCouponAgentRel record); |
||||
} |
@ -0,0 +1,7 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface HighCouponAgentRelMapperExt { |
||||
} |
@ -0,0 +1,346 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.HighCouponAgentRel; |
||||
import com.hai.entity.HighCouponAgentRelExample.Criteria; |
||||
import com.hai.entity.HighCouponAgentRelExample.Criterion; |
||||
import com.hai.entity.HighCouponAgentRelExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class HighCouponAgentRelSqlProvider { |
||||
|
||||
public String countByExample(HighCouponAgentRelExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("high_coupon_agent_rel"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(HighCouponAgentRelExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("high_coupon_agent_rel"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(HighCouponAgentRel record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("high_coupon_agent_rel"); |
||||
|
||||
if (record.getCouponName() != null) { |
||||
sql.VALUES("coupon_name", "#{couponName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesPrice() != null) { |
||||
sql.VALUES("sales_price", "#{salesPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCouponId() != null) { |
||||
sql.VALUES("coupon_id", "#{couponId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStockCount() != null) { |
||||
sql.VALUES("stock_count", "#{stockCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
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(HighCouponAgentRelExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("coupon_name"); |
||||
sql.SELECT("sales_price"); |
||||
sql.SELECT("coupon_id"); |
||||
sql.SELECT("agent_id"); |
||||
sql.SELECT("stock_count"); |
||||
sql.SELECT("create_time"); |
||||
sql.SELECT("`status`"); |
||||
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_rel"); |
||||
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) { |
||||
HighCouponAgentRel record = (HighCouponAgentRel) parameter.get("record"); |
||||
HighCouponAgentRelExample example = (HighCouponAgentRelExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("high_coupon_agent_rel"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,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.getCouponId() != null) { |
||||
sql.SET("coupon_id = #{record.couponId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
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.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
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_rel"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
sql.SET("coupon_name = #{record.couponName,jdbcType=VARCHAR}"); |
||||
sql.SET("sales_price = #{record.salesPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("coupon_id = #{record.couponId,jdbcType=BIGINT}"); |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
sql.SET("stock_count = #{record.stockCount,jdbcType=INTEGER}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
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}"); |
||||
|
||||
HighCouponAgentRelExample example = (HighCouponAgentRelExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(HighCouponAgentRel record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("high_coupon_agent_rel"); |
||||
|
||||
if (record.getCouponName() != null) { |
||||
sql.SET("coupon_name = #{couponName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesPrice() != null) { |
||||
sql.SET("sales_price = #{salesPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCouponId() != null) { |
||||
sql.SET("coupon_id = #{couponId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStockCount() != null) { |
||||
sql.SET("stock_count = #{stockCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
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, HighCouponAgentRelExample 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()); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,266 @@ |
||||
package com.hai.entity; |
||||
|
||||
import com.hai.model.HighCouponAgentCodeModel; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* high_coupon_agent_code |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class HighCouponAgentCode extends HighCouponAgentCodeModel implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 卡券和代理商的id |
||||
*/ |
||||
private Long couponAgentId; |
||||
|
||||
/** |
||||
* 卡券id |
||||
*/ |
||||
private Long couponId; |
||||
|
||||
/** |
||||
* 代理商id |
||||
*/ |
||||
private Long agentId; |
||||
|
||||
/** |
||||
* 销售码id |
||||
*/ |
||||
private Long couponCodeId; |
||||
|
||||
/** |
||||
* 销售码 |
||||
*/ |
||||
private String couponCode; |
||||
|
||||
/** |
||||
* 二维码 |
||||
*/ |
||||
private String qrCode; |
||||
|
||||
/** |
||||
* 状态:1.待销售 2.未使用 3.已使用 |
||||
*/ |
||||
private Integer status; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 操作人 |
||||
*/ |
||||
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 Long getAgentId() { |
||||
return agentId; |
||||
} |
||||
|
||||
public void setAgentId(Long agentId) { |
||||
this.agentId = agentId; |
||||
} |
||||
|
||||
public Long getCouponCodeId() { |
||||
return couponCodeId; |
||||
} |
||||
|
||||
public void setCouponCodeId(Long couponCodeId) { |
||||
this.couponCodeId = couponCodeId; |
||||
} |
||||
|
||||
public String getCouponCode() { |
||||
return couponCode; |
||||
} |
||||
|
||||
public void setCouponCode(String couponCode) { |
||||
this.couponCode = couponCode; |
||||
} |
||||
|
||||
public String getQrCode() { |
||||
return qrCode; |
||||
} |
||||
|
||||
public void setQrCode(String qrCode) { |
||||
this.qrCode = qrCode; |
||||
} |
||||
|
||||
public Integer getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(Integer status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public Date getCreateTime() { |
||||
return createTime; |
||||
} |
||||
|
||||
public void setCreateTime(Date createTime) { |
||||
this.createTime = createTime; |
||||
} |
||||
|
||||
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; |
||||
} |
||||
HighCouponAgentCode other = (HighCouponAgentCode) 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.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) |
||||
&& (this.getCouponCodeId() == null ? other.getCouponCodeId() == null : this.getCouponCodeId().equals(other.getCouponCodeId())) |
||||
&& (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())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (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 + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); |
||||
result = prime * result + ((getCouponCodeId() == null) ? 0 : getCouponCodeId().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()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().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(", agentId=").append(agentId); |
||||
sb.append(", couponCodeId=").append(couponCodeId); |
||||
sb.append(", couponCode=").append(couponCode); |
||||
sb.append(", qrCode=").append(qrCode); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", createTime=").append(createTime); |
||||
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(); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,249 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* high_coupon_agent_rel |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class HighCouponAgentRel implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 卡券名称 |
||||
*/ |
||||
private String couponName; |
||||
|
||||
/** |
||||
* 卡券销售价格 |
||||
*/ |
||||
private BigDecimal salesPrice; |
||||
|
||||
/** |
||||
* 优惠券id |
||||
*/ |
||||
private Long couponId; |
||||
|
||||
/** |
||||
* 代理商id |
||||
*/ |
||||
private Long agentId; |
||||
|
||||
/** |
||||
* 库存数量 |
||||
*/ |
||||
private Integer stockCount; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 状态 0:删除 1:正常 |
||||
*/ |
||||
private Integer status; |
||||
|
||||
/** |
||||
* 操作人 |
||||
*/ |
||||
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 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 getCouponId() { |
||||
return couponId; |
||||
} |
||||
|
||||
public void setCouponId(Long couponId) { |
||||
this.couponId = couponId; |
||||
} |
||||
|
||||
public Long getAgentId() { |
||||
return agentId; |
||||
} |
||||
|
||||
public void setAgentId(Long agentId) { |
||||
this.agentId = agentId; |
||||
} |
||||
|
||||
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 Integer getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(Integer status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
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; |
||||
} |
||||
HighCouponAgentRel other = (HighCouponAgentRel) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getCouponName() == null ? other.getCouponName() == null : this.getCouponName().equals(other.getCouponName())) |
||||
&& (this.getSalesPrice() == null ? other.getSalesPrice() == null : this.getSalesPrice().equals(other.getSalesPrice())) |
||||
&& (this.getCouponId() == null ? other.getCouponId() == null : this.getCouponId().equals(other.getCouponId())) |
||||
&& (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) |
||||
&& (this.getStockCount() == null ? other.getStockCount() == null : this.getStockCount().equals(other.getStockCount())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (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 + ((getCouponName() == null) ? 0 : getCouponName().hashCode()); |
||||
result = prime * result + ((getSalesPrice() == null) ? 0 : getSalesPrice().hashCode()); |
||||
result = prime * result + ((getCouponId() == null) ? 0 : getCouponId().hashCode()); |
||||
result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); |
||||
result = prime * result + ((getStockCount() == null) ? 0 : getStockCount().hashCode()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().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(", couponName=").append(couponName); |
||||
sb.append(", salesPrice=").append(salesPrice); |
||||
sb.append(", couponId=").append(couponId); |
||||
sb.append(", agentId=").append(agentId); |
||||
sb.append(", stockCount=").append(stockCount); |
||||
sb.append(", createTime=").append(createTime); |
||||
sb.append(", status=").append(status); |
||||
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(); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,23 @@ |
||||
package com.hai.model; |
||||
|
||||
import com.hai.entity.HighCouponAgentCode; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @Auther: 胡锐 |
||||
* @Description: |
||||
* @Date: 2021/4/20 23:01 |
||||
*/ |
||||
public class HighCouponAgentCodeModel { |
||||
|
||||
private List<HighCouponAgentCode> couponAgentCodeList; |
||||
|
||||
public List<HighCouponAgentCode> getCouponAgentCodeList() { |
||||
return couponAgentCodeList; |
||||
} |
||||
|
||||
public void setCouponAgentCodeList(List<HighCouponAgentCode> couponAgentCodeList) { |
||||
this.couponAgentCodeList = couponAgentCodeList; |
||||
} |
||||
} |
@ -0,0 +1,30 @@ |
||||
package com.hai.service; |
||||
|
||||
import com.hai.entity.HighCouponAgentCode; |
||||
import com.hai.entity.HighCouponAgentRel; |
||||
|
||||
import java.security.PrivateKey; |
||||
|
||||
/** |
||||
* @Auther: 胡锐 |
||||
* @Description: 代理商与卡券的声音 |
||||
* @Date: 2021/4/20 22:59 |
||||
*/ |
||||
public interface HighCouponAgentService { |
||||
|
||||
/** |
||||
* @Author 胡锐 |
||||
* @Description 卡券分配给代理商 |
||||
* @Date 2021/4/20 23:01 |
||||
**/ |
||||
void assignCouponAgent(HighCouponAgentRel highCouponAgentRel); |
||||
|
||||
/** |
||||
* @Author 胡锐 |
||||
* @Description 根据卡券id和代理商id 查询 |
||||
* @Date 2021/4/20 23:52 |
||||
**/ |
||||
HighCouponAgentRel getRelByCouponAgent(Long couponId,Long agentId); |
||||
|
||||
|
||||
} |
@ -0,0 +1,85 @@ |
||||
package com.hai.service.impl; |
||||
|
||||
import com.hai.common.exception.ErrorCode; |
||||
import com.hai.common.exception.ErrorHelp; |
||||
import com.hai.common.exception.SysCode; |
||||
import com.hai.dao.HighCouponAgentCodeMapper; |
||||
import com.hai.dao.HighCouponAgentRelMapper; |
||||
import com.hai.entity.*; |
||||
import com.hai.service.HighCouponAgentService; |
||||
import com.hai.service.HighCouponCodeService; |
||||
import com.hai.service.HighCouponService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import javax.annotation.Resource; |
||||
import java.util.Date; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* @Auther: 胡锐 |
||||
* @Description: |
||||
* @Date: 2021/4/20 23:02 |
||||
*/ |
||||
@Service("highCouponAgentService") |
||||
public class HighCouponAgentServiceImpl implements HighCouponAgentService { |
||||
|
||||
@Resource |
||||
private HighCouponAgentRelMapper highCouponAgentRelMapper; |
||||
|
||||
@Resource |
||||
private HighCouponAgentCodeMapper highCouponAgentCodeMapper; |
||||
|
||||
@Resource |
||||
private HighCouponCodeService highCouponCodeService; |
||||
|
||||
|
||||
@Override |
||||
public void assignCouponAgent(HighCouponAgentRel highCouponAgentRel) { |
||||
|
||||
// 查询卡券库存数量
|
||||
Map<String,Object> map = new HashMap<>(); |
||||
map.put("couponId", highCouponAgentRel.getCouponId()); |
||||
map.put("status", 1); |
||||
map.put("isAssignAgent", false); |
||||
List<HighCouponCode> codeList = highCouponCodeService.getCouponCodeList(map); |
||||
|
||||
if (highCouponAgentRel.getStockCount() > codeList.size()) { |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "无法分配,分配数量超过库存数量"); |
||||
} |
||||
|
||||
highCouponAgentRelMapper.insert(highCouponAgentRel); |
||||
|
||||
HighCouponAgentCode highCouponAgentCode; |
||||
for (HighCouponCode code : codeList) { |
||||
code.setAgentId(highCouponAgentRel.getAgentId()); |
||||
code.setIsAssignAgent(true); |
||||
highCouponCodeService.updateCouponCode(code); |
||||
|
||||
highCouponAgentCode = new HighCouponAgentCode(); |
||||
highCouponAgentCode.setCouponAgentId(highCouponAgentRel.getId()); |
||||
highCouponAgentCode.setCouponId(code.getCouponId()); |
||||
highCouponAgentCode.setAgentId(highCouponAgentRel.getAgentId()); |
||||
highCouponAgentCode.setCouponCodeId(code.getId()); |
||||
highCouponAgentCode.setCouponCode(code.getSalesCode()); |
||||
highCouponAgentCode.setQrCode(code.getExt1()); |
||||
highCouponAgentCode.setStatus(1); |
||||
highCouponAgentCode.setCreateTime(new Date()); |
||||
highCouponAgentCode.setOperatorId(highCouponAgentRel.getOperatorId()); |
||||
highCouponAgentCode.setOperatorName(highCouponAgentRel.getOperatorName()); |
||||
highCouponAgentCodeMapper.insert(highCouponAgentCode); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public HighCouponAgentRel getRelByCouponAgent(Long couponId, Long agentId) { |
||||
HighCouponAgentRelExample example = new HighCouponAgentRelExample(); |
||||
example.createCriteria().andCouponIdEqualTo(couponId).andAgentIdEqualTo(agentId); |
||||
List<HighCouponAgentRel> list = highCouponAgentRelMapper.selectByExample(example); |
||||
if (list != null && list.size() > 0) { |
||||
return list.get(0); |
||||
} |
||||
return null; |
||||
} |
||||
} |
Loading…
Reference in new issue