org.github.foxnic.web.system.service.impl.TenantServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-system Show documentation
Show all versions of service-system Show documentation
System Service Module Of Foxnic-Web
package org.github.foxnic.web.system.service.impl;
import com.github.foxnic.api.error.ErrorDesc;
import com.github.foxnic.api.transter.Result;
import com.github.foxnic.commons.busi.id.IDGenerator;
import com.github.foxnic.commons.collection.MapUtil;
import com.github.foxnic.dao.data.PagedList;
import com.github.foxnic.dao.data.SaveMode;
import com.github.foxnic.dao.entity.ReferCause;
import com.github.foxnic.dao.entity.SuperService;
import com.github.foxnic.dao.spec.DAO;
import com.github.foxnic.sql.expr.ConditionExpr;
import com.github.foxnic.sql.meta.DBField;
import org.github.foxnic.web.domain.system.Tenant;
import org.github.foxnic.web.domain.system.TenantVO;
import org.github.foxnic.web.framework.dao.DBConfigs;
import org.github.foxnic.web.system.service.ITenantService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.lang.reflect.Field;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
*
* 租户服务实现
*
* @author 李方捷 , [email protected]
* @since 2022-10-28 14:38:52
*/
@Service("SysTenantService")
public class TenantServiceImpl extends SuperService implements ITenantService {
/**
* 注入DAO对象
* */
@Resource(name=DBConfigs.PRIMARY_DAO)
private DAO dao=null;
/**
* 获得 DAO 对象
* */
public DAO dao() { return dao; }
@Override
public Object generateId(Field field) {
return IDGenerator.getSnowflakeIdString();
}
/**
* 添加,根据 throwsException 参数抛出异常或返回 Result 对象
*
* @param tenant 数据对象
* @param throwsException 是否抛出异常,如果不抛出异常,则返回一个失败的 Result 对象
* @return 结果 , 如果失败返回 false,成功返回 true
*/
@Override
public Result insert(Tenant tenant,boolean throwsException) {
Result r=super.insert(tenant,throwsException);
return r;
}
/**
* 添加,如果语句错误,则抛出异常
* @param tenant 数据对象
* @return 插入是否成功
* */
@Override
public Result insert(Tenant tenant) {
return this.insert(tenant,true);
}
/**
* 批量插入实体,事务内
* @param tenantList 实体数据清单
* @return 插入是否成功
* */
@Override
public Result insertList(List tenantList) {
return super.insertList(tenantList);
}
/**
* 按主键删除租户
*
* @param id 主键
* @return 删除是否成功
*/
public Result deleteByIdPhysical(String id) {
Tenant tenant = new Tenant();
if(id==null) return ErrorDesc.failure().message("id 不允许为 null 。");
tenant.setId(id);
try {
boolean suc = dao.deleteEntity(tenant);
return suc?ErrorDesc.success():ErrorDesc.failure();
}
catch(Exception e) {
Result r= ErrorDesc.failure();
r.extra().setException(e);
return r;
}
}
/**
* 按主键删除租户
*
* @param id 主键
* @return 删除是否成功
*/
public Result deleteByIdLogical(String id) {
Tenant tenant = new Tenant();
if(id==null) return ErrorDesc.failure().message("id 不允许为 null 。");
tenant.setId(id);
tenant.setDeleted(true);
tenant.setDeleteBy((String)dao.getDBTreaty().getLoginUserId());
tenant.setDeleteTime(new Date());
try {
boolean suc = dao.updateEntity(tenant,SaveMode.NOT_NULL_FIELDS);
return suc?ErrorDesc.success():ErrorDesc.failure();
}
catch(Exception e) {
Result r= ErrorDesc.failure();
r.extra().setException(e);
return r;
}
}
/**
* 更新,如果执行错误,则抛出异常
* @param tenant 数据对象
* @param mode 保存模式
* @return 保存是否成功
* */
@Override
public Result update(Tenant tenant , SaveMode mode) {
return this.update(tenant,mode,true);
}
/**
* 更新,根据 throwsException 参数抛出异常或返回 Result 对象
* @param tenant 数据对象
* @param mode 保存模式
* @param throwsException 是否抛出异常,如果不抛出异常,则返回一个失败的 Result 对象
* @return 保存是否成功
* */
@Override
public Result update(Tenant tenant , SaveMode mode,boolean throwsException) {
Result r=super.update(tenant , mode , throwsException);
return r;
}
/**
* 更新实体集,事务内
* @param tenantList 数据对象列表
* @param mode 保存模式
* @return 保存是否成功
* */
@Override
public Result updateList(List tenantList , SaveMode mode) {
return super.updateList(tenantList , mode);
}
/**
* 按主键更新租户
*
* @param id 主键
* @return 是否更新成功
*/
public boolean update(DBField field,Object value , String id) {
if(id==null) throw new IllegalArgumentException("id 不允许为 null ");
if(!field.table().name().equals(this.table())) throw new IllegalArgumentException("更新的数据表["+field.table().name()+"]与服务对应的数据表["+this.table()+"]不一致");
int suc=dao.update(field.table().name()).set(field.name(), value).where().and("id = ? ",id).top().execute();
return suc>0;
}
/**
* 按主键获取租户
*
* @param id 主键
* @return Tenant 数据对象
*/
public Tenant getById(String id) {
Tenant sample = new Tenant();
if(id==null) throw new IllegalArgumentException("id 不允许为 null ");
sample.setId(id);
return dao.queryEntity(sample);
}
/**
* 等价于 queryListByIds
* */
@Override
public List getByIds(List ids) {
return this.queryListByIds(ids);
}
@Override
public List queryListByIds(List ids) {
return super.queryListByUKeys("id",ids);
}
@Override
public Map queryMapByIds(List ids) {
return super.queryMapByUKeys("id",ids, Tenant::getId);
}
/**
* 查询实体集合,默认情况下,字符串使用模糊匹配,非字符串使用精确匹配
*
* @param sample 查询条件
* @return 查询结果
* */
@Override
public List queryList(TenantVO sample) {
return super.queryList(sample);
}
/**
* 分页查询实体集,字符串使用模糊匹配,非字符串使用精确匹配
*
* @param sample 查询条件
* @param pageSize 分页条数
* @param pageIndex 页码
* @return 查询结果
* */
@Override
public PagedList queryPagedList(TenantVO sample, int pageSize, int pageIndex) {
return super.queryPagedList(sample, pageSize, pageIndex);
}
/**
* 分页查询实体集,字符串使用模糊匹配,非字符串使用精确匹配
*
* @param sample 查询条件
* @param condition 其它条件
* @param pageSize 分页条数
* @param pageIndex 页码
* @return 查询结果
* */
@Override
public PagedList queryPagedList(Tenant sample, ConditionExpr condition, int pageSize, int pageIndex) {
return super.queryPagedList(sample, condition, pageSize, pageIndex);
}
/**
* 检查 实体 是否已经存在 , 判断 主键值不同,但指定字段的值相同的记录是否存在
*
* @param tenant 数据对象
* @return 判断结果
*/
public Boolean checkExists(Tenant tenant) {
//TDOD 此处添加判断段的代码
//boolean exists=super.checkExists(tenant, SYS_ROLE.NAME);
//return exists;
return false;
}
/**
* 批量检查引用
* @param ids 检查这些ID是否又被外部表引用
* */
@Override
public Map hasRefers(List ids) {
// 默认无业务逻辑,返回此行;有业务逻辑需要校验时,请修改并使用已注释的行代码!!!
return MapUtil.asMap(ids,new ReferCause(false));
// return super.hasRefers(FoxnicWeb.BPM_PROCESS_INSTANCE.FORM_DEFINITION_ID,ids);
}
}