|
|
|
@@ -29,6 +29,7 @@ import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.context.annotation.Lazy; |
|
|
|
import org.springframework.data.redis.core.StringRedisTemplate; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
@@ -50,45 +51,59 @@ import java.util.stream.Collectors; |
|
|
|
public class WxCUserBasicInfoController extends BaseController { |
|
|
|
private final Logger logger = LoggerFactory.getLogger(this.getClass()); |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private String fmUploadDir; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxCUserBasicInfoService wxCUserBasicInfoService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxCUserBasicChildService wxCUserBasicChildService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxCUserTagsService wxCUserTagsService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxCUserCarService wxCUserCarService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxCouponOrderService wxCouponOrderService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxCouponService wxCouponService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxLevelConfigService wxLevelConfigService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
WxCarPayRecordService wxCarPayRecordService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
StringRedisTemplate stringRedisTemplate; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private AsyncTask asyncTask; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private ExcelService excelService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxMerchantMapper wxMerchantMapper; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
private WxCreditHistoryService wxCreditHistoryService; |
|
|
|
|
|
|
|
|