Files
RuoYi-Vue/ruoyi-office/src/main/java/com/ruoyi/office/mapper/TtProjectLinkCheckMapper.java

16 lines
346 B
Java
Raw Normal View History

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);
}