Commit b69f8b64 by 徐康

Merge remote-tracking branch 'origin/qa' into qa

parents 78262762 b8f178b6
......@@ -32,8 +32,8 @@ public class GetMemberExtendInfoResponseDto {
private String id;
private String paidId;
private String paidName;
private Date openTime;
private Date expiryTime;
// private Long openTime;
// private Long expiryTime;
}
@Data
......@@ -41,6 +41,6 @@ public class GetMemberExtendInfoResponseDto {
private String memberId;
private String labelCode;
private String labelName;
private Date updateTime;
// private Long updateTime;
}
}
......@@ -119,8 +119,10 @@ public class SellCouponOrderServiceImpl {
private OrderAdapter orderAdapter;
@Autowired
private OrderSdkAdapter orderSdkAdapter;
// @Autowired
// private RedisCache redisCache;
@Autowired
private RedisCache redisCache;
protected RedisTemplate redisTemplate;
@Autowired
private CouponService couponService;
@Autowired
......@@ -419,7 +421,7 @@ public class SellCouponOrderServiceImpl {
String key = this.getFolwNo(requestVo.getAppId(), date);
int flowno = 0;
RedisTemplate redisTemplate = redisCache.getRedisTemplate();
// RedisTemplate redisTemplate = redisCache.getRedisTemplate();
if (redisTemplate.opsForValue().setIfAbsent(key, 0)) {
redisTemplate.expire(key, 24, TimeUnit.HOURS);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment