|
@@ -7,6 +7,7 @@ import com.kxs.adminap.enity.AppResultJson;
|
|
|
import com.kxs.adminap.enity.RelationData;
|
|
|
import com.kxs.adminap.model.Users;
|
|
|
import com.kxs.adminap.service.main.UsersService;
|
|
|
+import com.kxs.adminap.util.DesUtil;
|
|
|
import com.kxs.adminap.util.RedisUtils;
|
|
|
import com.kxs.adminap.util.UsersUtil;
|
|
|
import com.kxs.adminap.util.Util;
|
|
@@ -36,7 +37,7 @@ public class UsersController
|
|
|
@PostMapping("/main/users/all")
|
|
|
public @ResponseBody AppResultJson List(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
Integer page = Integer.parseInt(data.getString("PageNum").toString());
|
|
|
Integer limit = Integer.parseInt(data.getString("PageSize").toString());
|
|
@@ -151,7 +152,7 @@ public class UsersController
|
|
|
@PostMapping("/main/users/parentlist")
|
|
|
public @ResponseBody AppResultJson ParentList(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
Integer page = Integer.parseInt(data.getString("PageNum").toString());
|
|
|
Integer limit = Integer.parseInt(data.getString("PageSize").toString());
|
|
@@ -222,7 +223,7 @@ public class UsersController
|
|
|
@RequestMapping("/main/users/childlist")
|
|
|
public @ResponseBody AppResultJson ChildList(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
Integer page = Integer.parseInt(data.getString("PageNum").toString());
|
|
|
Integer limit = Integer.parseInt(data.getString("PageSize").toString());
|
|
@@ -308,7 +309,7 @@ public class UsersController
|
|
|
@RequestMapping("/main/users/childamountrecordlist")
|
|
|
public @ResponseBody AppResultJson ChildAmountRecordList(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
Integer page = Integer.parseInt(data.getString("PageNum").toString());
|
|
|
Integer limit = Integer.parseInt(data.getString("PageSize").toString());
|
|
@@ -500,7 +501,7 @@ public class UsersController
|
|
|
@RequestMapping("/main/users/canclelist")
|
|
|
public @ResponseBody AppResultJson CancleList(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
Integer page = Integer.parseInt(data.getString("PageNum").toString());
|
|
|
Integer limit = Integer.parseInt(data.getString("PageSize").toString());
|
|
@@ -622,7 +623,7 @@ public class UsersController
|
|
|
@GetMapping("/main/users")
|
|
|
public @ResponseBody AppResultJson Query(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
Integer Id = Integer.parseInt(Util.CheckInt(data.get("Id").toString()));
|
|
|
Users item = UsersService.Query(Id, "*");
|
|
@@ -642,7 +643,7 @@ public class UsersController
|
|
|
@PostMapping("/main/users")
|
|
|
public @ResponseBody AppResultJson Add(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
Users data = JSONObject.parseObject(JSONObject.toJSONString(value), Users.class);
|
|
|
Map<String, Object> fields = new HashMap<>();
|
|
|
fields.put("NickName", data.NickName); //昵称
|
|
@@ -728,7 +729,7 @@ public class UsersController
|
|
|
@PutMapping("/main/users")
|
|
|
public @ResponseBody AppResultJson Edit(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
Users data = JSONObject.parseObject(JSONObject.toJSONString(value), Users.class);
|
|
|
Map<String, Object> fields = new HashMap<>();
|
|
|
fields.put("NickName", data.NickName); //昵称
|
|
@@ -814,7 +815,7 @@ public class UsersController
|
|
|
@DeleteMapping("/main/users/remove")
|
|
|
public @ResponseBody AppResultJson Remove(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject jsonObj = JSONObject.parseObject(value);
|
|
|
String Id = jsonObj.get("Id").toString();
|
|
|
String[] idlist = Id.split(",");
|
|
@@ -840,7 +841,7 @@ public class UsersController
|
|
|
@DeleteMapping("/main/users")
|
|
|
public @ResponseBody AppResultJson Delete(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject jsonObj = JSONObject.parseObject(value);
|
|
|
String Id = jsonObj.get("Id").toString();
|
|
|
String[] idlist = Id.split(",");
|
|
@@ -866,7 +867,7 @@ public class UsersController
|
|
|
@PutMapping("/main/users/open")
|
|
|
public @ResponseBody AppResultJson Open(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject jsonObj = JSONObject.parseObject(value);
|
|
|
String Id = jsonObj.get("Id").toString();
|
|
|
String[] idlist = Id.split(",");
|
|
@@ -894,7 +895,7 @@ public class UsersController
|
|
|
@PutMapping("/main/users/close")
|
|
|
public @ResponseBody AppResultJson Close(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject jsonObj = JSONObject.parseObject(value);
|
|
|
String Id = jsonObj.get("Id").toString();
|
|
|
String[] idlist = Id.split(",");
|
|
@@ -921,7 +922,7 @@ public class UsersController
|
|
|
@PutMapping("/main/users/sort")
|
|
|
public @ResponseBody AppResultJson Sort(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject jsonObj = JSONObject.parseObject(value);
|
|
|
Integer Id = Integer.parseInt(jsonObj.get("Id").toString());
|
|
|
Integer Sort = Integer.parseInt(jsonObj.get("Sort").toString());
|
|
@@ -941,7 +942,7 @@ public class UsersController
|
|
|
@PostMapping("/main/users/import")
|
|
|
public @ResponseBody AppResultJson Import(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject jsonObj = JSONObject.parseObject(value);
|
|
|
String ExcelData = jsonObj.get("ExcelData").toString();
|
|
|
UsersService.Import(ExcelData);
|
|
@@ -961,7 +962,7 @@ public class UsersController
|
|
|
@PostMapping("/main/users/export")
|
|
|
public @ResponseBody AppResultJson ExportExcel(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
Users data = JSONObject.parseObject(JSONObject.toJSONString(value), Users.class);
|
|
|
String SqlString = "select * from Users order by Id desc limit 20";
|
|
|
Dictionary<String, Object> dic = new Hashtable<>();
|
|
@@ -985,7 +986,7 @@ public class UsersController
|
|
|
@PostMapping("/main/users/sycnposcount")
|
|
|
public @ResponseBody AppResultJson SycnData(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
String UserId = data.getString("UserId").toString();
|
|
|
// var BrandIds = KqProductsService.QueryBrandId();
|
|
@@ -1010,7 +1011,7 @@ public class UsersController
|
|
|
@PostMapping("/main/users/resetpwd")
|
|
|
public @ResponseBody AppResultJson ResetPwd(String value)
|
|
|
{
|
|
|
- // value = PublicFunction.DesDecrypt(value);
|
|
|
+ value = DesUtil.decrypt(value);
|
|
|
JSONObject data = JSONObject.parseObject(value);
|
|
|
Integer UserId = Integer.parseInt(data.getString("UserId").toString());
|
|
|
var info = "";
|