猫妈狗爸伴宠师小程序后端代码
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.
 
 
 
 
 
 

61 lines
1.2 KiB

package com.ruoyi.catdog.mapper;
import java.util.List;
import com.ruoyi.catdog.domain.License;
/**
* 执照Mapper接口
*
* @author ruoyi
* @date 2025-03-02
*/
public interface LicenseMapper
{
/**
* 查询执照
*
* @param licenseId 执照主键
* @return 执照
*/
public License selectLicenseByLicenseId(Long licenseId);
/**
* 查询执照列表
*
* @param license 执照
* @return 执照集合
*/
public List<License> selectLicenseList(License license);
/**
* 新增执照
*
* @param license 执照
* @return 结果
*/
public int insertLicense(License license);
/**
* 修改执照
*
* @param license 执照
* @return 结果
*/
public int updateLicense(License license);
/**
* 删除执照
*
* @param licenseId 执照主键
* @return 结果
*/
public int deleteLicenseByLicenseId(Long licenseId);
/**
* 批量删除执照
*
* @param licenseIds 需要删除的数据主键集合
* @return 结果
*/
public int deleteLicenseByLicenseIds(Long[] licenseIds);
}