|
@@ -728,9 +728,9 @@ namespace GxPress.Repository.Implement
|
|
|
notInUserIds += ")";
|
|
|
}
|
|
|
}
|
|
|
- var sql = $"select * from ccpph.tede_user where (Name like '%{request.Key}%' or Phone like '%{request.Key}%' or Email like '%{request.Key}%') {notInUserIds}";
|
|
|
+ var sql = $"select * from tede_user where (Name like '%{request.Key}%' or Phone like '%{request.Key}%' or Email like '%{request.Key}%') {notInUserIds}";
|
|
|
if (request.SearchType == 2 && !string.IsNullOrWhiteSpace(request.Key) && request.DepartmentId > 0)
|
|
|
- sql = $"select a.* from ccpph.tede_user a inner join ccpph.tede_address_book_group_user c on a.Id=c.UserId where c.AddressBookGroupId={request.DepartmentId} and (a.Name like '%{request.Key}%' or a.Phone like '%{request.Key}%' or a.Email like '%{request.Key}%') {notInUserIds}";
|
|
|
+ sql = $"select a.* from tede_user a inner join tede_address_book_group_user c on a.Id=c.UserId where c.AddressBookGroupId={request.DepartmentId} and (a.Name like '%{request.Key}%' or a.Phone like '%{request.Key}%' or a.Email like '%{request.Key}%') {notInUserIds}";
|
|
|
if (request.SearchType == 1 && !string.IsNullOrWhiteSpace(request.Key) && request.DepartmentId > 0)
|
|
|
{
|
|
|
//递归获取部门Id
|
|
@@ -740,7 +740,7 @@ namespace GxPress.Repository.Implement
|
|
|
departmentValue += $"{item.Id},";
|
|
|
departmentValue = departmentValue.Remove(departmentValue.Length - 1, 1);
|
|
|
departmentValue += ")";
|
|
|
- sql = $"select * from ccpph.tede_user where DepartmentId in {departmentValue} and (Name like '%{request.Key}%' or Phone like '%{request.Key}%' or Email like '%{request.Key}%') {notInUserIds}";
|
|
|
+ sql = $"select * from tede_user where DepartmentId in {departmentValue} and (Name like '%{request.Key}%' or Phone like '%{request.Key}%' or Email like '%{request.Key}%') {notInUserIds}";
|
|
|
}
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
@@ -764,7 +764,7 @@ namespace GxPress.Repository.Implement
|
|
|
}
|
|
|
public async Task<List<Entity.Department>> GetUpDepartmentAsync(int id, List<Department> departments)
|
|
|
{
|
|
|
- var sql = $"select * from ccpph.tede_department where Id={id}";
|
|
|
+ var sql = $"select * from tede_department where Id={id}";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|
|
@@ -777,7 +777,7 @@ namespace GxPress.Repository.Implement
|
|
|
}
|
|
|
public async Task<List<Entity.Department>> GetDepartmentAsync(int pid, List<Department> departments)
|
|
|
{
|
|
|
- var sql = $"select * from ccpph.tede_department where ParentId={pid}";
|
|
|
+ var sql = $"select * from tede_department where ParentId={pid}";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|
|
@@ -833,14 +833,14 @@ namespace GxPress.Repository.Implement
|
|
|
public async Task<UserCountResult> GetUserCountAsync(int userId)
|
|
|
{
|
|
|
var result = new UserCountResult();
|
|
|
- string sql = $"select count(1) from ccpph.tede_middle where FolderType=1 and UserId={userId} and MiddleId in (select NoticeId from ccpph.tede_notice_addressee where UserId={userId} and IsRead=0 and IsDelete=0)";
|
|
|
+ string sql = $"select count(1) from tede_middle where FolderType=1 and UserId={userId} and MiddleId in (select NoticeId from tede_notice_addressee where UserId={userId} and IsRead=0 and IsDelete=0)";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|
|
|
var noticeCount = await connection.ExecuteScalarAsync<int>(sql);
|
|
|
- sql = $"select count(1) from ccpph.tede_middle where FolderType=5 and UserId={userId} and MiddleId in (select MissiveId from ccpph.tede_missive_addressee where UserId={userId} and IsDelete=0 and IsRead=0)";
|
|
|
+ sql = $"select count(1) from tede_middle where FolderType=5 and UserId={userId} and MiddleId in (select MissiveId from tede_missive_addressee where UserId={userId} and IsDelete=0 and IsRead=0)";
|
|
|
var missiveCount = await connection.ExecuteScalarAsync<int>(sql);
|
|
|
- sql = $"SELECT count(1) FROM ccpph.tede_admin_verify where AdminId={userId} and DisposeType=0";
|
|
|
+ sql = $"SELECT count(1) FROM tede_admin_verify where AdminId={userId} and DisposeType=0";
|
|
|
noticeCount += await connection.ExecuteScalarAsync<int>(sql);
|
|
|
result.noticeCount = noticeCount;
|
|
|
result.missiveCount = missiveCount;
|
|
@@ -865,7 +865,7 @@ namespace GxPress.Repository.Implement
|
|
|
strSql = strSql.Remove(strSql.Length - 1, 1);
|
|
|
strSql += ")";
|
|
|
}
|
|
|
- string sql = $" select * from ccpph.tede_user where Id in( SELECT UserId FROM ccpph.tede_flow_todo where FlowId={flowId} and Type='{type}' {strSql})";
|
|
|
+ string sql = $" select * from tede_user where Id in( SELECT UserId FROM tede_flow_todo where FlowId={flowId} and Type='{type}' {strSql})";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|
|
@@ -877,7 +877,7 @@ namespace GxPress.Repository.Implement
|
|
|
|
|
|
public async Task<List<JobUserResult>> ElasticSearchUser()
|
|
|
{
|
|
|
- var sql = "select * from ccpph.tede_user where IsUpload=0 limit 0,100";
|
|
|
+ var sql = "select * from tede_user where IsUpload=0 limit 0,100";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|
|
@@ -897,7 +897,7 @@ namespace GxPress.Repository.Implement
|
|
|
// var connection = database.GetConnection();
|
|
|
|
|
|
// var result = connection.Query<UserDetail, Department, UserDetail>(
|
|
|
- // "SELECT a.*,b.Name FROM ccpph.tede_user a inner join ccpph.tede_department b on a.DepartmentId=b.Id where a.id=@Id;",
|
|
|
+ // "SELECT a.*,b.Name FROM tede_user a inner join tede_department b on a.DepartmentId=b.Id where a.id=@Id;",
|
|
|
// (userDetail,department) =>
|
|
|
// {
|
|
|
// userDetail.DepartmentName = department.Name;
|