wangsixiang
9 months ago
1 changed files with 61 additions and 0 deletions
@ -0,0 +1,61 @@ |
|||
package com.zc.business.mapper; |
|||
|
|||
import java.util.List; |
|||
import com.zc.business.domain.DcVehicles; |
|||
|
|||
/** |
|||
* 车辆信息Mapper接口 |
|||
* |
|||
* @author ruoyi |
|||
* @date 2024-03-05 |
|||
*/ |
|||
public interface DcVehiclesMapper |
|||
{ |
|||
/** |
|||
* 查询车辆信息 |
|||
* |
|||
* @param id 车辆信息主键 |
|||
* @return 车辆信息 |
|||
*/ |
|||
public DcVehicles selectDcVehiclesById(Long id); |
|||
|
|||
/** |
|||
* 查询车辆信息列表 |
|||
* |
|||
* @param dcVehicles 车辆信息 |
|||
* @return 车辆信息集合 |
|||
*/ |
|||
List<DcVehicles> selectDcVehiclesList(DcVehicles dcVehicles); |
|||
|
|||
/** |
|||
* 新增车辆信息 |
|||
* |
|||
* @param dcVehicles 车辆信息 |
|||
* @return 结果 |
|||
*/ |
|||
int insertDcVehicles(DcVehicles dcVehicles); |
|||
|
|||
/** |
|||
* 修改车辆信息 |
|||
* |
|||
* @param dcVehicles 车辆信息 |
|||
* @return 结果 |
|||
*/ |
|||
int updateDcVehicles(DcVehicles dcVehicles); |
|||
|
|||
/** |
|||
* 删除车辆信息 |
|||
* |
|||
* @param id 车辆信息主键 |
|||
* @return 结果 |
|||
*/ |
|||
int deleteDcVehiclesById(Long id); |
|||
|
|||
/** |
|||
* 批量删除车辆信息 |
|||
* |
|||
* @param ids 需要删除的数据主键集合 |
|||
* @return 结果 |
|||
*/ |
|||
int deleteDcVehiclesByIds(Long[] ids); |
|||
} |
Loading…
Reference in new issue