载体管理

pg_adapter
20918 8 months ago
parent 8ee024d8d8
commit f07738b070

@ -1,9 +1,18 @@
package com.ruoyi.web.controller.manager; package com.ruoyi.web.controller.manager;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.text.CharSequenceUtil;
import com.ruoyi.common.utils.ShiroUtils;
import com.ruoyi.system.domain.TdPropertyEment;
import com.ruoyi.system.domain.tdcase.TdCase;
import com.ruoyi.system.service.TdPropertyEmentService; import com.ruoyi.system.service.TdPropertyEmentService;
import com.ruoyi.system.service.tdcase.TdCaseService;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
/** /**
* packageName com.ruoyi.web.controller.manager * packageName com.ruoyi.web.controller.manager
@ -20,7 +29,27 @@ public class TdPropertyEmentManager {
@Resource @Resource
private TdPropertyEmentService tdPropertyEmentService; private TdPropertyEmentService tdPropertyEmentService;
public List<TdPropertyEment> selectEmentList(TdPropertyEment tdPropertyEment) {
return tdPropertyEmentService.selectEmentList(tdPropertyEment);
}
public boolean saveOrUpdate(TdPropertyEment tdPropertyEment) {
if (CharSequenceUtil.isBlank(tdPropertyEment.getId())) {
tdPropertyEment.setCreateTime(new Date());
}
return tdPropertyEmentService.saveOrUpdate(tdPropertyEment);
}
public TdPropertyEment selecttdEment(String id) {
return tdPropertyEmentService.getById(id);
}
public boolean deletedEmentByids(String ids) {
List<String> list = Arrays.asList(Convert.toStrArray(ids));
return tdPropertyEmentService.removeByIds(list);
}
public List<TdPropertyEment> selectList() {
return tdPropertyEmentService.lambdaQuery().list();
}
} }

@ -2,6 +2,9 @@ package com.ruoyi.system.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.TdPropertyEment; import com.ruoyi.system.domain.TdPropertyEment;
import com.ruoyi.system.domain.tdcase.TdCase;
import java.util.List;
/** /**
* @author 13560 * @author 13560
@ -10,6 +13,7 @@ import com.ruoyi.system.domain.TdPropertyEment;
* @Entity generator.domain.TdPropertyEment * @Entity generator.domain.TdPropertyEment
*/ */
public interface TdPropertyEmentMapper extends BaseMapper<TdPropertyEment> { public interface TdPropertyEmentMapper extends BaseMapper<TdPropertyEment> {
public List<TdPropertyEment> selectEmentList(TdPropertyEment tdPropertyEment);
} }

@ -2,6 +2,9 @@ package com.ruoyi.system.service;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TdPropertyEment; import com.ruoyi.system.domain.TdPropertyEment;
import com.ruoyi.system.domain.tdcase.TdCase;
import java.util.List;
/** /**
* @author 13560 * @author 13560
@ -9,5 +12,5 @@ import com.ruoyi.system.domain.TdPropertyEment;
* @createDate 2024-08-20 08:55:12 * @createDate 2024-08-20 08:55:12
*/ */
public interface TdPropertyEmentService extends IService<TdPropertyEment> { public interface TdPropertyEmentService extends IService<TdPropertyEment> {
public List<TdPropertyEment> selectEmentList(TdPropertyEment tdPropertyEment);
} }

@ -3,9 +3,13 @@ package com.ruoyi.system.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.domain.TdPropertyEment; import com.ruoyi.system.domain.TdPropertyEment;
import com.ruoyi.system.mapper.TdPropertyEmentMapper; import com.ruoyi.system.mapper.TdPropertyEmentMapper;
import com.ruoyi.system.mapper.tdcase.TdCaseMapper;
import com.ruoyi.system.service.TdPropertyEmentService; import com.ruoyi.system.service.TdPropertyEmentService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
/** /**
* @author 13560 * @author 13560
* @description td_property_ement()Service * @description td_property_ement()Service
@ -14,7 +18,12 @@ import org.springframework.stereotype.Service;
@Service @Service
public class TdPropertyEmentServiceImpl extends ServiceImpl<TdPropertyEmentMapper, TdPropertyEment> public class TdPropertyEmentServiceImpl extends ServiceImpl<TdPropertyEmentMapper, TdPropertyEment>
implements TdPropertyEmentService { implements TdPropertyEmentService {
@Resource
private TdPropertyEmentMapper tdPropertyEmentMapper;
@Override
public List<TdPropertyEment> selectEmentList(TdPropertyEment tdPropertyEment) {
return tdPropertyEmentMapper.selectEmentList(tdPropertyEment);
}
} }

@ -31,4 +31,21 @@
destory_date,destory_type,maintain_remark, destory_date,destory_type,maintain_remark,
create_time create_time
</sql> </sql>
<select id="selectEmentList" resultType="com.ruoyi.system.domain.TdPropertyEment">
select <include refid="Base_Column_List"/> from td_property_ement
<trim prefix="where" prefixOverrides="and|or">
<if test="name!=null and name!=''">
AND name LIKE concat('%',#{name},'%')
</if>
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
AND create_time &gt;= #{params.beginTime}
</if>
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
AND create_time &lt;= #{params.endTime}
</if>
</trim>
ORDER BY create_time DESC
</select>
</mapper> </mapper>

Loading…
Cancel
Save