mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-09 04:20:08 +08:00
打印日志
This commit is contained in:
@@ -89,6 +89,7 @@ public class PileBillingTemplateController extends BaseController {
|
||||
* http://localhost:8080/billing/template/createPreferentialBillingTemplate
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('billing:template:edit')")
|
||||
@Log(title = "计费模板", businessType = BusinessType.INSERT)
|
||||
@PostMapping("/createPreferentialBillingTemplate")
|
||||
public AjaxResult createPreferentialBillingTemplate(@RequestBody CreateOrUpdateBillingTemplateDTO pileBillingTemplate) {
|
||||
return toAjax(pileBillingTemplateService.createPreferentialBillingTemplate(pileBillingTemplate));
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.jsowell.pile.service.impl;
|
||||
|
||||
import com.alibaba.fastjson2.JSON;
|
||||
import com.google.common.collect.Lists;
|
||||
import com.jsowell.common.enums.DelFlagEnum;
|
||||
import com.jsowell.common.exception.BusinessException;
|
||||
@@ -206,7 +207,7 @@ public class MemberGroupServiceImpl implements MemberGroupService {
|
||||
.groupCode(groupCode)
|
||||
.billingTemplateVO(billingTemplate)
|
||||
.build();
|
||||
log.info("查询会员:{}, 在运营商:{}, 下面站点:{}, 折扣信息:{}", memberId, merchantId, stationId, memberDiscountVOBuilder);
|
||||
log.info("查询会员:{}, 在运营商:{}, 下面站点:{}, 折扣信息:{}", memberId, merchantId, stationId, JSON.toJSONString(memberDiscountVOBuilder));
|
||||
return memberDiscountVOBuilder;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user