16 lines
346 B
Java
16 lines
346 B
Java
package com.ruoyi.office.mapper;
|
|
|
|
import com.ruoyi.office.domain.TtProjectLinkCheck;
|
|
|
|
/**
|
|
* 项目网盘链接检测结果 Mapper。
|
|
*/
|
|
public interface TtProjectLinkCheckMapper
|
|
{
|
|
int upsertTtProjectLinkCheck(TtProjectLinkCheck linkCheck);
|
|
|
|
int deleteByProjectId(Integer projectId);
|
|
|
|
int deleteByProjectIds(Integer[] projectIds);
|
|
}
|