|
@@ -8,6 +8,7 @@ import java.util.stream.Collectors;
|
|
|
import javax.annotation.PostConstruct;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.game.business.domain.AppUser;
|
|
|
import com.game.business.domain.FinTranRecord;
|
|
@@ -95,6 +96,12 @@ public class AppUserCountDividendController extends BaseController
|
|
|
@RepeatSubmit(message = "频繁操作")
|
|
|
public HttpRet<Boolean> send(AppUserDividendSendDto dto) throws Exception
|
|
|
{
|
|
|
+ try {
|
|
|
+ logger.info("分红发放{}", JSONObject.toJSONString(dto));
|
|
|
+ }catch (Exception e){
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
String userId = dto.getUserId();
|
|
|
String dateNo = dto.getDateNum();
|
|
|
Long curUserId = SecurityUtils.getUserId();
|