package com.nq.component;
|
|
import cn.hutool.core.util.StrUtil;
|
import org.springframework.stereotype.Component;
|
|
@Component
|
public class UserRecordComponent {
|
/**
|
* 充值金额
|
*/
|
static String CHON_ZHI_JIN_E = "";
|
/**
|
* 提款金额
|
*/
|
static String TI_KUAN_JIN_E = "";
|
/**
|
* 购买所花金额
|
*/
|
static String GOU_MAI_JIN_E = "";
|
/**
|
* 出售股票所盈利金额
|
*/
|
static String YING_LI_JIN_E = "";
|
|
/**任务发布日志内容*//*
|
public static String taskPublishContent(String operateUserName,String taskName, String taskNum) {
|
return StrUtil.format(TASK_PUBLISH_CONTENT, operateUserName,taskName,taskNum);
|
}
|
|
*//**调查团队任务接收*//*
|
public static String taskAcceptContent(String operateUserName, String taskNum) {
|
return StrUtil.format(TASK_ACCEPT_CONTENT, operateUserName, taskNum);
|
}
|
|
*//**调查团队任务分配给子成员*//*
|
public static String taskArrangeContent(String operateUserName, String taskNum, List<WgSurveyteam> users) {
|
StringBuilder sb = new StringBuilder();
|
for (WgSurveyteam wgSurveyteam : users) {
|
sb.append(wgSurveyteam.getSurveyName());
|
sb.append(",");
|
}
|
return StrUtil.format(TASK_ARRANGE_CONTENT, operateUserName, taskNum, sb);
|
}
|
|
*//**调查团队提交线索*//*
|
public static String taskCluesSurveyteamsubmitContent(String operateUserName, String taskNum,String cluesNum) {
|
return StrUtil.format(TASK_CLUES_SURVEYTEAMSUBMIT_CONTENT, operateUserName, taskNum,cluesNum);
|
}*/
|
}
|