You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.1 KiB
92 lines
2.1 KiB
package com.zc.business.service;
|
|
|
|
import com.zc.business.domain.DcEventConstruction;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”Service接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-01-12
|
|
*/
|
|
public interface IDcEventConstructionService
|
|
{
|
|
/**
|
|
* 查询施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
*
|
|
* @param id 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”主键
|
|
* @return 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
*/
|
|
public DcEventConstruction selectDcEventConstructionById(String id);
|
|
|
|
/**
|
|
* 查询施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”列表
|
|
*
|
|
* @param dcEventConstruction 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
* @return 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”集合
|
|
*/
|
|
List<DcEventConstruction> selectDcEventConstructionList(DcEventConstruction dcEventConstruction);
|
|
|
|
/**
|
|
* 新增施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
*
|
|
* @param dcEventConstruction 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
* @return 结果
|
|
*/
|
|
int insertDcEventConstruction(DcEventConstruction dcEventConstruction);
|
|
|
|
/**
|
|
* 修改施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
*
|
|
* @param dcEventConstruction 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
* @return 结果
|
|
*/
|
|
int updateDcEventConstruction(DcEventConstruction dcEventConstruction);
|
|
|
|
/**
|
|
* 批量删除施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”
|
|
*
|
|
* @param ids 需要删除的施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”主键集合
|
|
* @return 结果
|
|
*/
|
|
int deleteDcEventConstructionByIds(String[] ids);
|
|
|
|
/**
|
|
* 删除施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”信息
|
|
*
|
|
* @param id 施工建设事件
|
|
|
|
"施工分类"为事件“事件子类”主键
|
|
* @return 结果
|
|
*/
|
|
int deleteDcEventConstructionById(String id);
|
|
}
|
|
|