You've already forked FrameTour-BE
feat(pricing): 新增打印小票和查询券码批次配置功能
- 新增 AppClaimController 控制器处理移动设备端的领券请求 - 实现 ClaimReq 和 ClaimResp 模型类用于领券请求和响应 - 在 VoucherPrintService 接口中新增打印小票方法 - 在VoucherPrintServiceImpl 中实现打印小票和查询券码批次配置的逻辑 - 更新 PriceVoucherBatchConfigMapper 接口和 XML 文件,添加查询券码批次配置的方法
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
package com.ycwl.basic.controller.mobile;
|
||||
|
||||
import com.ycwl.basic.model.mobile.claim.ClaimReq;
|
||||
import com.ycwl.basic.model.mobile.claim.ClaimResp;
|
||||
import com.ycwl.basic.model.pc.face.entity.FaceEntity;
|
||||
import com.ycwl.basic.pricing.dto.CouponClaimRequest;
|
||||
import com.ycwl.basic.pricing.dto.CouponClaimResult;
|
||||
import com.ycwl.basic.pricing.dto.req.VoucherPrintReq;
|
||||
import com.ycwl.basic.pricing.dto.resp.VoucherPrintResp;
|
||||
import com.ycwl.basic.pricing.service.ICouponService;
|
||||
import com.ycwl.basic.pricing.service.VoucherPrintService;
|
||||
import com.ycwl.basic.repository.FaceRepository;
|
||||
import com.ycwl.basic.repository.ScenicRepository;
|
||||
import com.ycwl.basic.util.ScenicConfigManager;
|
||||
import com.ycwl.basic.utils.ApiResponse;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/api/mobile/claim/v1")
|
||||
@AllArgsConstructor
|
||||
public class AppClaimController {
|
||||
private final FaceRepository faceRepository;
|
||||
private final ScenicRepository scenicRepository;
|
||||
private final VoucherPrintService voucherPrintService;
|
||||
private final ICouponService couponService;
|
||||
|
||||
|
||||
@PostMapping("tryClaim")
|
||||
public ApiResponse<ClaimResp> tryClaim(@RequestBody ClaimReq req) {
|
||||
FaceEntity face = faceRepository.getFace(req.getFaceId());
|
||||
if (face == null) {
|
||||
return ApiResponse.fail("请选择人脸");
|
||||
}
|
||||
ClaimResp claimResp = new ClaimResp();
|
||||
ScenicConfigManager scenicConfig = scenicRepository.getScenicConfigManager(face.getScenicId());
|
||||
if (Boolean.TRUE.equals(scenicConfig.getBoolean("voucher_enable"))) {
|
||||
// 可以领券
|
||||
VoucherPrintResp voucherPrintResp = voucherPrintService.queryPrintedVoucher(face.getId());
|
||||
if (voucherPrintResp == null) {
|
||||
// 打印
|
||||
voucherPrintResp = voucherPrintService.printVoucherTicket(new VoucherPrintReq(face.getId(), req.getMorphId(), face.getScenicId()));
|
||||
}
|
||||
if (voucherPrintResp != null) {
|
||||
claimResp.setHasCoupon(false);
|
||||
claimResp.setHasPrint(true);
|
||||
claimResp.setHasPrint(voucherPrintResp.getPrintStatus() == 1);
|
||||
claimResp.setPrintCode(voucherPrintResp.getCode());
|
||||
claimResp.setPrintType(voucherPrintResp.getType());
|
||||
return ApiResponse.success(claimResp);
|
||||
}
|
||||
}
|
||||
if (Boolean.TRUE.equals(scenicConfig.getBoolean("booking_enable"))) {
|
||||
VoucherPrintResp voucherPrintResp = voucherPrintService.queryPrintedVoucher(face.getId());
|
||||
if (voucherPrintResp == null) {
|
||||
// 打印
|
||||
voucherPrintResp = voucherPrintService.printBookingTicket(new VoucherPrintReq(face.getId(), req.getMorphId(), face.getScenicId()));
|
||||
}
|
||||
if (voucherPrintResp != null) {
|
||||
claimResp.setHasCoupon(false);
|
||||
claimResp.setHasPrint(true);
|
||||
claimResp.setHasPrint(voucherPrintResp.getPrintStatus() == 1);
|
||||
claimResp.setPrintCode(voucherPrintResp.getCode());
|
||||
claimResp.setPrintType(voucherPrintResp.getType());
|
||||
return ApiResponse.success(claimResp);
|
||||
}
|
||||
}
|
||||
if (req.getType() != null) {
|
||||
// 第几次进入
|
||||
Integer couponId = scenicConfig.getInteger("coupon_id_for_type_" + req.getType());
|
||||
if (couponId != null) {
|
||||
// 可以领券
|
||||
CouponClaimRequest request = new CouponClaimRequest(face.getMemberId(), Long.valueOf(couponId));
|
||||
CouponClaimResult claimResult = couponService.claimCoupon(request);
|
||||
if (claimResult.isSuccess()) {
|
||||
// 领到了
|
||||
claimResp.setHasCoupon(true);
|
||||
claimResp.setCouponDesc(scenicConfig.getString("coupon_desc_for_type_" + req.getType(), "专属折扣券"));
|
||||
claimResp.setCouponCountdown(scenicConfig.getString("coupon_countdown_for_type_" + req.getType(), "送你优惠,保存美好!"));
|
||||
return ApiResponse.success(claimResp);
|
||||
}
|
||||
}
|
||||
}
|
||||
return ApiResponse.fail("异常");
|
||||
}
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
package com.ycwl.basic.model.mobile.claim;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ClaimReq {
|
||||
private Long faceId;
|
||||
// 扫码进入的推客ID
|
||||
private Long morphId;
|
||||
// 通知进入的type
|
||||
private Integer type;
|
||||
}
|
@@ -0,0 +1,13 @@
|
||||
package com.ycwl.basic.model.mobile.claim;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ClaimResp {
|
||||
private Boolean hasPrint;
|
||||
private String printType;
|
||||
private String printCode;
|
||||
private Boolean hasCoupon;
|
||||
private String couponDesc;
|
||||
private String couponCountdown;
|
||||
}
|
@@ -1,11 +1,13 @@
|
||||
package com.ycwl.basic.pricing.dto.req;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 打印小票请求
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class VoucherPrintReq {
|
||||
|
||||
private Long faceId;
|
||||
|
@@ -14,6 +14,7 @@ public class VoucherPrintResp {
|
||||
* 流水号
|
||||
*/
|
||||
private String code;
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 券码
|
||||
|
@@ -44,4 +44,11 @@ public interface PriceVoucherBatchConfigMapper extends BaseMapper<PriceVoucherBa
|
||||
* @return 统计信息
|
||||
*/
|
||||
PriceVoucherBatchConfig selectBatchStats(@Param("batchId") Long batchId);
|
||||
|
||||
/**
|
||||
* 根据券码查询对应的券码批次配置
|
||||
* @param voucherCode 券码
|
||||
* @return 券码批次配置
|
||||
*/
|
||||
PriceVoucherBatchConfig selectByVoucherCode(@Param("voucherCode") String voucherCode);
|
||||
}
|
@@ -16,4 +16,6 @@ public interface VoucherPrintService {
|
||||
VoucherPrintResp printVoucherTicket(VoucherPrintReq request);
|
||||
|
||||
VoucherPrintResp queryPrintedVoucher(Long faceId);
|
||||
|
||||
VoucherPrintResp printBookingTicket(VoucherPrintReq voucherPrintReq);
|
||||
}
|
@@ -7,8 +7,10 @@ import com.ycwl.basic.model.pc.mp.MpConfigEntity;
|
||||
import com.ycwl.basic.pricing.dto.req.VoucherPrintReq;
|
||||
import com.ycwl.basic.pricing.dto.resp.VoucherPrintResp;
|
||||
import com.ycwl.basic.pricing.entity.PriceVoucherCode;
|
||||
import com.ycwl.basic.pricing.entity.PriceVoucherBatchConfig;
|
||||
import com.ycwl.basic.pricing.entity.VoucherPrintRecord;
|
||||
import com.ycwl.basic.pricing.mapper.PriceVoucherCodeMapper;
|
||||
import com.ycwl.basic.pricing.mapper.PriceVoucherBatchConfigMapper;
|
||||
import com.ycwl.basic.pricing.mapper.VoucherPrintRecordMapper;
|
||||
import com.ycwl.basic.pricing.service.VoucherPrintService;
|
||||
import com.ycwl.basic.printer.ticket.FeiETicketPrinter;
|
||||
@@ -16,6 +18,7 @@ import com.ycwl.basic.repository.FaceRepository;
|
||||
import com.ycwl.basic.repository.ScenicRepository;
|
||||
import com.ycwl.basic.utils.WxMpUtil;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.logging.log4j.util.Strings;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.redis.core.RedisTemplate;
|
||||
@@ -41,6 +44,9 @@ public class VoucherPrintServiceImpl implements VoucherPrintService {
|
||||
@Autowired
|
||||
private PriceVoucherCodeMapper priceVoucherCodeMapper;
|
||||
|
||||
@Autowired
|
||||
private PriceVoucherBatchConfigMapper priceVoucherBatchConfigMapper;
|
||||
|
||||
@Autowired
|
||||
private FaceRepository faceRepository;
|
||||
|
||||
@@ -92,7 +98,6 @@ public class VoucherPrintServiceImpl implements VoucherPrintService {
|
||||
|
||||
if (existingRecord != null) {
|
||||
log.info("找到已存在的打印记录,返回该记录: {}", existingRecord.getId());
|
||||
existingRecord.setCode(existingRecord.getVoucherCode());
|
||||
return buildResponse(existingRecord);
|
||||
}
|
||||
|
||||
@@ -119,9 +124,10 @@ public class VoucherPrintServiceImpl implements VoucherPrintService {
|
||||
printRecord.setDeleted(0);
|
||||
|
||||
voucherPrintRecordMapper.insert(printRecord);
|
||||
VoucherPrintResp voucherPrintResp = buildResponse(printRecord);
|
||||
|
||||
try {
|
||||
printTicket(printRecord);
|
||||
printTicket(printRecord, voucherPrintResp);
|
||||
printRecord.setPrintStatus(1);
|
||||
} catch (Exception e) {
|
||||
log.error("打印失败");
|
||||
@@ -129,10 +135,9 @@ public class VoucherPrintServiceImpl implements VoucherPrintService {
|
||||
}
|
||||
|
||||
voucherPrintRecordMapper.updatePrintStatus(printRecord.getId(), 1, null);
|
||||
|
||||
|
||||
log.info("成功创建打印记录: {}, 券码: {}", code, availableVoucher.getCode());
|
||||
printRecord.setCode(printRecord.getVoucherCode());
|
||||
return buildResponse(printRecord);
|
||||
return voucherPrintResp;
|
||||
|
||||
} finally {
|
||||
// 释放锁
|
||||
@@ -160,10 +165,99 @@ public class VoucherPrintServiceImpl implements VoucherPrintService {
|
||||
if (existingRecord == null) {
|
||||
return null;
|
||||
}
|
||||
existingRecord.setCode(existingRecord.getVoucherCode());
|
||||
return buildResponse(existingRecord);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VoucherPrintResp printBookingTicket(VoucherPrintReq request) {
|
||||
// 参数验证
|
||||
if (request.getFaceId() == null) {
|
||||
throw new BaseException("用户faceId不能为空");
|
||||
}
|
||||
if (request.getBrokerId() == null) {
|
||||
throw new BaseException("经纪人ID不能为空");
|
||||
}
|
||||
FaceEntity face = faceRepository.getFace(request.getFaceId());
|
||||
if (face == null) {
|
||||
throw new BaseException("请上传人脸");
|
||||
}
|
||||
request.setScenicId(face.getScenicId());
|
||||
|
||||
Long currentUserId = Long.valueOf(BaseContextHandler.getUserId());
|
||||
|
||||
// 验证faceId是否属于当前用户
|
||||
validateFaceOwnership(request.getFaceId(), currentUserId);
|
||||
|
||||
// 使用Redis分布式锁防止重复打印
|
||||
String lockKey = String.format(PRINT_LOCK_KEY, request.getFaceId(), request.getBrokerId(), request.getScenicId());
|
||||
String lockValue = UUID.randomUUID().toString();
|
||||
|
||||
try {
|
||||
// 尝试获取锁,超时时间30秒
|
||||
Boolean lockAcquired = redisTemplate.opsForValue().setIfAbsent(lockKey, lockValue, 30, TimeUnit.SECONDS);
|
||||
if (Boolean.FALSE.equals(lockAcquired)) {
|
||||
throw new BaseException("请求处理中,请稍后再试");
|
||||
}
|
||||
|
||||
// 检查是否已存在相同的打印记录
|
||||
VoucherPrintRecord existingRecord = voucherPrintRecordMapper.selectByFaceBrokerScenic(
|
||||
request.getFaceId(), request.getScenicId());
|
||||
|
||||
if (existingRecord != null) {
|
||||
log.info("找到已存在的打印记录,返回该记录: {}", existingRecord.getId());
|
||||
return buildResponse(existingRecord);
|
||||
}
|
||||
|
||||
// 生成流水号
|
||||
String code = generateCode();
|
||||
|
||||
// 创建打印记录
|
||||
VoucherPrintRecord printRecord = new VoucherPrintRecord();
|
||||
printRecord.setCode(code);
|
||||
printRecord.setFaceId(request.getFaceId());
|
||||
printRecord.setBrokerId(request.getBrokerId());
|
||||
printRecord.setScenicId(request.getScenicId());
|
||||
printRecord.setPrintStatus(0); // 待打印
|
||||
printRecord.setCreateTime(new Date());
|
||||
printRecord.setUpdateTime(new Date());
|
||||
printRecord.setDeleted(0);
|
||||
|
||||
voucherPrintRecordMapper.insert(printRecord);
|
||||
VoucherPrintResp voucherPrintResp = buildResponse(printRecord);
|
||||
|
||||
try {
|
||||
printTicket(printRecord, voucherPrintResp);
|
||||
printRecord.setPrintStatus(1);
|
||||
} catch (Exception e) {
|
||||
log.error("打印失败");
|
||||
printRecord.setPrintStatus(2);
|
||||
}
|
||||
|
||||
voucherPrintRecordMapper.updatePrintStatus(printRecord.getId(), 1, null);
|
||||
|
||||
log.info("成功创建打印记录: {}, 流水号: {}", code, printRecord.getCode());
|
||||
return voucherPrintResp;
|
||||
|
||||
} finally {
|
||||
// 释放锁
|
||||
if (lockValue.equals(redisTemplate.opsForValue().get(lockKey))) {
|
||||
redisTemplate.delete(lockKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据券码查询voucher_batch_config记录
|
||||
* @param voucherCode 券码
|
||||
* @return 券码批次配置
|
||||
*/
|
||||
public PriceVoucherBatchConfig getVoucherBatchConfigByCode(String voucherCode) {
|
||||
if (voucherCode == null || voucherCode.trim().isEmpty()) {
|
||||
throw new BaseException("券码不能为空");
|
||||
}
|
||||
return priceVoucherBatchConfigMapper.selectByVoucherCode(voucherCode);
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证faceId是否属于当前用户
|
||||
*/
|
||||
@@ -204,20 +298,39 @@ public class VoucherPrintServiceImpl implements VoucherPrintService {
|
||||
private VoucherPrintResp buildResponse(VoucherPrintRecord record) {
|
||||
VoucherPrintResp response = new VoucherPrintResp();
|
||||
BeanUtils.copyProperties(record, response);
|
||||
if (Strings.isNotBlank(record.getVoucherCode())) {
|
||||
PriceVoucherBatchConfig priceVoucherBatchConfig = priceVoucherBatchConfigMapper.selectByVoucherCode(record.getVoucherCode());
|
||||
if (priceVoucherBatchConfig != null) {
|
||||
if (Integer.valueOf(0).equals(priceVoucherBatchConfig.getDiscountType())) {
|
||||
response.setType("赠品兑换码");
|
||||
} else {
|
||||
response.setType("抵扣兑换码");
|
||||
}
|
||||
}
|
||||
response.setCode(record.getVoucherCode());
|
||||
} else {
|
||||
response.setType("小票配对码");
|
||||
}
|
||||
return response;
|
||||
}
|
||||
|
||||
/**
|
||||
* 调用打印机接口(待实现)
|
||||
*/
|
||||
private void printTicket(VoucherPrintRecord record) throws Exception {
|
||||
private void printTicket(VoucherPrintRecord record, VoucherPrintResp voucherPrintResp) throws Exception {
|
||||
FaceEntity face = faceRepository.getFace(record.getFaceId());
|
||||
MpConfigEntity scenicMpConfig = scenicRepository.getScenicMpConfig(face.getScenicId());
|
||||
String urlLink = WxMpUtil.generateUrlLink(scenicMpConfig.getAppId(), scenicMpConfig.getAppSecret(), "pages/videoSynthesis/index", "code=" + record.getVoucherCode() + "&scenicId=" + face.getScenicId() + "&faceId=" + face.getId());
|
||||
urlLink = urlLink + "?cq=T"+record.getVoucherCode();
|
||||
String urlLink;
|
||||
if (Strings.isNotBlank(record.getVoucherCode())) {
|
||||
urlLink = WxMpUtil.generateUrlLink(scenicMpConfig.getAppId(), scenicMpConfig.getAppSecret(), "pages/videoSynthesis/index", "code=" + record.getVoucherCode() + "&scenicId=" + face.getScenicId() + "&faceId=" + face.getId());
|
||||
urlLink = urlLink + "?cq=T"+record.getVoucherCode();
|
||||
log.info(" 调用打印机打印小票,记录ID: {}, 券码: {}", record.getId(), record.getVoucherCode());
|
||||
} else {
|
||||
urlLink = WxMpUtil.generateUrlLink(scenicMpConfig.getAppId(), scenicMpConfig.getAppSecret(), "pages/videoSynthesis/index", "scenicId=" + face.getScenicId() + "&faceId=" + face.getId());
|
||||
log.info(" 调用打印机打印小票,记录ID: {}, 配对码: {}", record.getId(), record.getCode());
|
||||
}
|
||||
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日");
|
||||
SimpleDateFormat sdf2 = new SimpleDateFormat("MM月dd日");
|
||||
log.info(" 调用打印机打印小票,记录ID: {}, 券码: {}", record.getId(), record.getVoucherCode());
|
||||
String content;
|
||||
content = "<BR><B>世界再大</B><BR>";
|
||||
content += "<B>你永远是这段旅途</B><BR>";
|
||||
@@ -234,9 +347,10 @@ public class VoucherPrintServiceImpl implements VoucherPrintService {
|
||||
content += "<CB>游后微信扫码领取</CB>";
|
||||
content += "<C>精彩指数:★★★★★</C><BR>";
|
||||
content += "━━━━━━━━━━━━━━━━<BR>";
|
||||
content += "<CB>"+record.getVoucherCode()+"</CB>";
|
||||
content += "<C>赠品兑换码</C>";
|
||||
content += "<CB>"+voucherPrintResp.getCode()+"</CB>";
|
||||
content += "<C>"+voucherPrintResp.getType()+"</C>";
|
||||
content += "<C>有效期:"+sdf2.format(new Date())+"</C>";
|
||||
FeiETicketPrinter.doPrint("550519002", content, 1);
|
||||
// FeiETicketPrinter.doPrint("550519002", content, 1);
|
||||
log.info("打印完成->内容:\n{}", content);
|
||||
}
|
||||
}
|
84
src/main/resources/mapper/PriceVoucherBatchConfigMapper.xml
Normal file
84
src/main/resources/mapper/PriceVoucherBatchConfigMapper.xml
Normal file
@@ -0,0 +1,84 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ycwl.basic.pricing.mapper.PriceVoucherBatchConfigMapper">
|
||||
|
||||
<!-- 结果映射 -->
|
||||
<resultMap id="BaseResultMap" type="com.ycwl.basic.pricing.entity.PriceVoucherBatchConfig">
|
||||
<id column="id" property="id" />
|
||||
<result column="batch_name" property="batchName" />
|
||||
<result column="scenic_id" property="scenicId" />
|
||||
<result column="broker_id" property="brokerId" />
|
||||
<result column="discount_type" property="discountType" />
|
||||
<result column="discount_value" property="discountValue" />
|
||||
<result column="total_count" property="totalCount" />
|
||||
<result column="used_count" property="usedCount" />
|
||||
<result column="claimed_count" property="claimedCount" />
|
||||
<result column="status" property="status" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="create_by" property="createBy" />
|
||||
<result column="update_by" property="updateBy" />
|
||||
<result column="deleted" property="deleted" />
|
||||
<result column="deleted_at" property="deletedAt" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 基础字段 -->
|
||||
<sql id="Base_Column_List">
|
||||
id, batch_name, scenic_id, broker_id, discount_type, discount_value,
|
||||
total_count, used_count, claimed_count, status, create_time, update_time,
|
||||
create_by, update_by, deleted, deleted_at
|
||||
</sql>
|
||||
|
||||
<!-- 根据景区ID和推客ID查询有效的批次列表 -->
|
||||
<select id="selectActiveBatchesByScenicAndBroker" resultMap="BaseResultMap">
|
||||
SELECT
|
||||
<include refid="Base_Column_List" />
|
||||
FROM price_voucher_batch_config
|
||||
WHERE scenic_id = #{scenicId}
|
||||
AND broker_id = #{brokerId}
|
||||
AND status = 1
|
||||
AND deleted = 0
|
||||
ORDER BY create_time DESC
|
||||
</select>
|
||||
|
||||
<!-- 更新批次的已领取数量 -->
|
||||
<update id="updateClaimedCount">
|
||||
UPDATE price_voucher_batch_config
|
||||
SET claimed_count = claimed_count + #{increment},
|
||||
update_time = NOW()
|
||||
WHERE id = #{batchId}
|
||||
AND deleted = 0
|
||||
</update>
|
||||
|
||||
<!-- 更新批次的已使用数量 -->
|
||||
<update id="updateUsedCount">
|
||||
UPDATE price_voucher_batch_config
|
||||
SET used_count = used_count + #{increment},
|
||||
update_time = NOW()
|
||||
WHERE id = #{batchId}
|
||||
AND deleted = 0
|
||||
</update>
|
||||
|
||||
<!-- 获取批次统计信息 -->
|
||||
<select id="selectBatchStats" resultMap="BaseResultMap">
|
||||
SELECT
|
||||
<include refid="Base_Column_List" />
|
||||
FROM price_voucher_batch_config
|
||||
WHERE id = #{batchId}
|
||||
AND deleted = 0
|
||||
</select>
|
||||
|
||||
<!-- 根据券码查询对应的券码批次配置 -->
|
||||
<select id="selectByVoucherCode" resultMap="BaseResultMap">
|
||||
SELECT
|
||||
b.id, b.batch_name, b.scenic_id, b.broker_id, b.discount_type, b.discount_value,
|
||||
b.total_count, b.used_count, b.claimed_count, b.status, b.create_time, b.update_time,
|
||||
b.create_by, b.update_by, b.deleted, b.deleted_at
|
||||
FROM price_voucher_batch_config b
|
||||
INNER JOIN price_voucher_code c ON b.id = c.batch_id
|
||||
WHERE c.code = #{voucherCode}
|
||||
AND b.deleted = 0
|
||||
AND c.deleted = 0
|
||||
</select>
|
||||
|
||||
</mapper>
|
Reference in New Issue
Block a user