Administrator
2025-04-21 a217652d33c75df23202828000d82d0ca8555ac2
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.taoke.autopay.controller.admin;
 
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonObject;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.taoke.autopay.dao.ClientInfoMapper;
import com.taoke.autopay.entity.AdminUser;
import com.taoke.autopay.entity.ClientInfo;
import com.taoke.autopay.service.AdminUserService;
import com.taoke.autopay.service.ClientInfoService;
import com.taoke.autopay.utils.TimeUtil;
import net.sf.json.JSONObject;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.yeshi.utils.JsonUtil;
import org.yeshi.utils.StringUtil;
 
import javax.annotation.Resource;
import javax.servlet.http.HttpSession;
import javax.validation.constraints.NotEmpty;
import java.io.IOException;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
 
@Controller
@RequestMapping("/admin/api/clientinfo")
public class AdminClientInfoController {
 
    @Resource
    private ClientInfoService clientInfoService;
 
    private Gson gson = new GsonBuilder().registerTypeAdapter(Date.class, new TypeAdapter<Date>() {
        @Override
        public void write(JsonWriter out, Date value) throws IOException {
            String desc = "";
            if (value != null) {
                // 判断是否是同一天
                desc = TimeUtil.getGernalTime(value.getTime(), "yyyy-MM-dd HH:mm:ss");
                out.value(desc);
            } else {
                out.value("");
            }
        }
 
        @Override
        public Date read(JsonReader in) throws IOException {
            return new Date();
        }
    }).create();
 
    @ResponseBody
    @RequestMapping("list")
    public String list(String account, int page,int limit){
 
        ClientInfoMapper.DaoQuery query=new   ClientInfoMapper.DaoQuery();
        if(!StringUtil.isNullOrEmpty(account)) {
            query.account = account;
        }
        query.start = (page-1)*limit;
        query.count = limit;
        query.sortList= Arrays.asList(new String[]{"create_time desc"});
        JSONObject data=new JSONObject();
        List<ClientInfo> list = clientInfoService.list(query);
        data.put("list", gson.toJson(list));
        data.put("count",  clientInfoService.count(query));
        return JsonUtil.loadTrueResult(data);
    }
 
 
    @ResponseBody
    @RequestMapping("setpwd")
    public String setPwd(Long id, String pwd) {
        if(id==null||pwd==null||pwd.length()<6){
            return JsonUtil.loadFalseResult("数据不完整");
        }
        clientInfoService.setPwd(id,StringUtil.Md5( pwd));
        return JsonUtil.loadTrueResult("");
    }
 
    @ResponseBody
    @RequestMapping("add")
    public String addClient(String pwd, int count) {
        if(count>100){
            return JsonUtil.loadFalseResult("单次创建最多100个");
        }
        for(int i=0;i<count;i++){
              ClientInfo info=new ClientInfo();
              info.setPwd(StringUtil.Md5(pwd));
              clientInfoService.add(info);
        }
        return JsonUtil.loadTrueResult("");
    }
 
}