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.
		
		
		
		
		
			
		
			
				
					
					
						
							62 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							62 lines
						
					
					
						
							1.4 KiB
						
					
					
				
								package com.zc.business.service;
							 | 
						|
								
							 | 
						|
								import com.zc.business.domain.DcEventAccident;
							 | 
						|
								
							 | 
						|
								import java.util.List;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * 交通事故事件Service接口
							 | 
						|
								 * 
							 | 
						|
								 * @author ruoyi
							 | 
						|
								 * @date 2024-01-12
							 | 
						|
								 */
							 | 
						|
								public interface IDcEventAccidentService 
							 | 
						|
								{
							 | 
						|
								    /**
							 | 
						|
								     * 查询交通事故事件
							 | 
						|
								     * 
							 | 
						|
								     * @param id 交通事故事件主键
							 | 
						|
								     * @return 交通事故事件
							 | 
						|
								     */
							 | 
						|
								    public DcEventAccident selectDcEventAccidentById(String id);
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * 查询交通事故事件列表
							 | 
						|
								     * 
							 | 
						|
								     * @param dcEventAccident 交通事故事件
							 | 
						|
								     * @return 交通事故事件集合
							 | 
						|
								     */
							 | 
						|
								    List<DcEventAccident> selectDcEventAccidentList(DcEventAccident dcEventAccident);
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * 新增交通事故事件
							 | 
						|
								     * 
							 | 
						|
								     * @param dcEventAccident 交通事故事件
							 | 
						|
								     * @return 结果
							 | 
						|
								     */
							 | 
						|
								    int insertDcEventAccident(DcEventAccident dcEventAccident);
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * 修改交通事故事件
							 | 
						|
								     * 
							 | 
						|
								     * @param dcEventAccident 交通事故事件
							 | 
						|
								     * @return 结果
							 | 
						|
								     */
							 | 
						|
								    int updateDcEventAccident(DcEventAccident dcEventAccident);
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * 批量删除交通事故事件
							 | 
						|
								     * 
							 | 
						|
								     * @param ids 需要删除的交通事故事件主键集合
							 | 
						|
								     * @return 结果
							 | 
						|
								     */
							 | 
						|
								    int deleteDcEventAccidentByIds(String[] ids);
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * 删除交通事故事件信息
							 | 
						|
								     * 
							 | 
						|
								     * @param id 交通事故事件主键
							 | 
						|
								     * @return 结果
							 | 
						|
								     */
							 | 
						|
								    int deleteDcEventAccidentById(String id);
							 | 
						|
								}
							 | 
						|
								
							 |