zj
2024-06-03 287ac389edd047696d956afafdb855a93830bc0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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);
    }*/
}