| 123456789101112131415161718192021222324252627282930313233 |
- package com.goafanti.common.dao;
- import com.goafanti.business.bo.InputRestrictProject;
- import com.goafanti.business.bo.OutRestrictProject;
- import com.goafanti.common.model.RestrictProject;
- import java.util.List;
- /**
- * @author Administrator
- * @description 针对表【restrict_project(限定项目表)】的数据库操作Mapper
- * @createDate 2024-05-13 16:41:41
- * @Entity com.goafanti.common.model.RestrictProject
- */
- public interface RestrictProjectMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(RestrictProject record);
- int insertSelective(RestrictProject record);
- RestrictProject selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(RestrictProject record);
- int updateByPrimaryKey(RestrictProject record);
- RestrictProject selectByPid(InputRestrictProject in);
- List<OutRestrictProject> selectByUidAndAid(InputRestrictProject in);
- }
|