|
@@ -13,35 +13,35 @@ import com.ym.adminap.enity.RelationData;
|
|
import com.ym.adminap.model.main.Users;
|
|
import com.ym.adminap.model.main.Users;
|
|
import com.ym.adminap.util.SqlSessionUtils;
|
|
import com.ym.adminap.util.SqlSessionUtils;
|
|
|
|
|
|
-public class UsersService
|
|
|
|
-{
|
|
|
|
|
|
+/**
|
|
|
|
+ * 创客
|
|
|
|
+ */
|
|
|
|
+public class UsersService {
|
|
/**
|
|
/**
|
|
* 查询列表
|
|
* 查询列表
|
|
- * @param fields 查询的字段
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param fields 查询的字段
|
|
* @param relationData 关联表
|
|
* @param relationData 关联表
|
|
- * @param query 查询条件
|
|
|
|
- * @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
|
|
- * @param page 页码
|
|
|
|
- * @param limit 每页条数
|
|
|
|
- * @param orderBy 排序(如:id desc,sort asc)
|
|
|
|
|
|
+ * @param query 查询条件
|
|
|
|
+ * @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
|
|
+ * @param page 页码
|
|
|
|
+ * @param limit 每页条数
|
|
|
|
+ * @param orderBy 排序(如:id desc,sort asc)
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields, Users query, String condition, List<RelationData> relationData)
|
|
|
|
- {
|
|
|
|
- if(fields.isBlank()) {
|
|
|
|
|
|
+ public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields,
|
|
|
|
+ Users query, String condition, List<RelationData> relationData) {
|
|
|
|
+ if (fields.isBlank()) {
|
|
fields = "*";
|
|
fields = "*";
|
|
}
|
|
}
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
ListParam param = new ListParam();
|
|
ListParam param = new ListParam();
|
|
- if (page > 1)
|
|
|
|
- {
|
|
|
|
|
|
+ if (page > 1) {
|
|
Integer spage = (page - 1) * limit;
|
|
Integer spage = (page - 1) * limit;
|
|
param.skip = spage;
|
|
param.skip = spage;
|
|
param.limit = limit;
|
|
param.limit = limit;
|
|
- }
|
|
|
|
- else
|
|
|
|
- {
|
|
|
|
|
|
+ } else {
|
|
param.skip = 0;
|
|
param.skip = 0;
|
|
}
|
|
}
|
|
param.relationData = relationData;
|
|
param.relationData = relationData;
|
|
@@ -54,30 +54,32 @@ public class UsersService
|
|
sqlSession.close();
|
|
sqlSession.close();
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
- public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields, Users query, String condition)
|
|
|
|
- {
|
|
|
|
|
|
+
|
|
|
|
+ public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields,
|
|
|
|
+ Users query, String condition) {
|
|
return list(page, limit, orderBy, fields, query, condition, new ArrayList<>());
|
|
return list(page, limit, orderBy, fields, query, condition, new ArrayList<>());
|
|
}
|
|
}
|
|
- public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields, Users query)
|
|
|
|
- {
|
|
|
|
|
|
+
|
|
|
|
+ public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields,
|
|
|
|
+ Users query) {
|
|
return list(page, limit, orderBy, fields, query, "", new ArrayList<>());
|
|
return list(page, limit, orderBy, fields, query, "", new ArrayList<>());
|
|
}
|
|
}
|
|
- public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields)
|
|
|
|
- {
|
|
|
|
|
|
+
|
|
|
|
+ public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy, String fields) {
|
|
return list(page, limit, orderBy, fields, new Users(), "", new ArrayList<>());
|
|
return list(page, limit, orderBy, fields, new Users(), "", new ArrayList<>());
|
|
}
|
|
}
|
|
- public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy)
|
|
|
|
- {
|
|
|
|
|
|
+
|
|
|
|
+ public static List<Map<String, Object>> list(Integer page, Integer limit, String orderBy) {
|
|
return list(page, limit, orderBy, "*", new Users(), "", new ArrayList<>());
|
|
return list(page, limit, orderBy, "*", new Users(), "", new ArrayList<>());
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询一条记录
|
|
* 查询一条记录
|
|
|
|
+ *
|
|
* @param id 主键Id
|
|
* @param id 主键Id
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Users query(Integer Id)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Users query(Integer Id) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Users result = usersMapper.selectByPrimaryKey(Id);
|
|
Users result = usersMapper.selectByPrimaryKey(Id);
|
|
@@ -87,29 +89,30 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 根据条件查询一条记录
|
|
* 根据条件查询一条记录
|
|
- * @param data 查询条件
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param data 查询条件
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Users query(Users data)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Users query(Users data) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Users result = usersMapper.selectByCondition(data);
|
|
Users result = usersMapper.selectByCondition(data);
|
|
- if(result == null) result = new Users();
|
|
|
|
|
|
+ if (result == null)
|
|
|
|
+ result = new Users();
|
|
sqlSession.close();
|
|
sqlSession.close();
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询记录数
|
|
* 查询记录数
|
|
- * @param field 查询字段
|
|
|
|
- * @param data 查询条件
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param field 查询字段
|
|
|
|
+ * @param data 查询条件
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Integer count(String field, Users data, String condition)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Integer count(String field, Users data, String condition) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Integer result = usersMapper.getCount(field, data, condition);
|
|
Integer result = usersMapper.getCount(field, data, condition);
|
|
@@ -119,13 +122,13 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询总数
|
|
* 查询总数
|
|
- * @param field 查询字段
|
|
|
|
- * @param data 查询条件
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param field 查询字段
|
|
|
|
+ * @param data 查询条件
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Object sum(String field, Users data, String condition)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Object sum(String field, Users data, String condition) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Object result = usersMapper.getSum(field, data, condition);
|
|
Object result = usersMapper.getSum(field, data, condition);
|
|
@@ -135,17 +138,17 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询是否存在
|
|
* 查询是否存在
|
|
- * @param data 查询条件
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param data 查询条件
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @param condition 查询条件(sql语句,慎用,注意sql注入)
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Boolean exist(Users data, String condition)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Boolean exist(Users data, String condition) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Integer result = usersMapper.getCount("1", data, condition);
|
|
Integer result = usersMapper.getCount("1", data, condition);
|
|
sqlSession.close();
|
|
sqlSession.close();
|
|
- if(result > 0) {
|
|
|
|
|
|
+ if (result > 0) {
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
return false;
|
|
@@ -153,11 +156,11 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 添加数据
|
|
* 添加数据
|
|
|
|
+ *
|
|
* @param data 数据包
|
|
* @param data 数据包
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Integer add(Users data)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Integer add(Users data) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Integer result = usersMapper.insert(data);
|
|
Integer result = usersMapper.insert(data);
|
|
@@ -167,11 +170,11 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 修改数据
|
|
* 修改数据
|
|
|
|
+ *
|
|
* @param data 数据包
|
|
* @param data 数据包
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Integer update(Users data)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Integer update(Users data) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Integer result = usersMapper.updateByPrimaryKey(data);
|
|
Integer result = usersMapper.updateByPrimaryKey(data);
|
|
@@ -181,11 +184,11 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 逻辑删除数据,将status字段设置为-1
|
|
* 逻辑删除数据,将status字段设置为-1
|
|
|
|
+ *
|
|
* @param id 主键id
|
|
* @param id 主键id
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Integer remove(Integer id)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Integer remove(Integer id) {
|
|
Users data = new Users();
|
|
Users data = new Users();
|
|
data.setId(id);
|
|
data.setId(id);
|
|
data.setStatus(-1);
|
|
data.setStatus(-1);
|
|
@@ -198,11 +201,11 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 彻底删除数据
|
|
* 彻底删除数据
|
|
|
|
+ *
|
|
* @param id 主键id
|
|
* @param id 主键id
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Integer delete(Integer id)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Integer delete(Integer id) {
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
UsersMapper usersMapper = sqlSession.getMapper(UsersMapper.class);
|
|
Integer result = usersMapper.deleteByPrimaryKey(id);
|
|
Integer result = usersMapper.deleteByPrimaryKey(id);
|
|
@@ -212,12 +215,12 @@ public class UsersService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 排序
|
|
* 排序
|
|
- * @param id 主键id
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param id 主键id
|
|
* @param Sort 序号
|
|
* @param Sort 序号
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- public static Integer sort(Integer id, Integer sort)
|
|
|
|
- {
|
|
|
|
|
|
+ public static Integer sort(Integer id, Integer sort) {
|
|
Users user = new Users();
|
|
Users user = new Users();
|
|
user.setId(id);
|
|
user.setId(id);
|
|
user.setSort(sort);
|
|
user.setSort(sort);
|