You cannot 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
Java

1 month ago
package com.ruoyi.pda.mapper;
import java.util.List;
import com.ruoyi.pda.domain.PdaApkVersion;
/**
* Mapper
*
* @author ruoyi
* @date 2023-04-06
*/
public interface PdaApkVersionMapper
{
/**
*
*
* @param objid
* @return
*/
public PdaApkVersion selectPdaApkVersionByObjid(Long objid);
/**
*
*
* @param pdaApkVersion
* @return
*/
public List<PdaApkVersion> selectPdaApkVersionList(PdaApkVersion pdaApkVersion);
/**
*
*
* @param pdaApkVersion
* @return
*/
public int insertPdaApkVersion(PdaApkVersion pdaApkVersion);
/**
*
*
* @param pdaApkVersion
* @return
*/
public int updatePdaApkVersion(PdaApkVersion pdaApkVersion);
/**
*
*
* @param objid
* @return
*/
public int deletePdaApkVersionByObjid(Long objid);
/**
*
*
* @param objids
* @return
*/
public int deletePdaApkVersionByObjids(String[] objids);
}