Fancy
2025-01-07 28f6317f7189d5c4a7e64f57dd6c7fc2011f8632
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoOth/OthFileMapper.java
@@ -3,17 +3,21 @@
import com.dy.pmsGlobal.pojoOth.OthFile;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface OthFileMapper {
    OthFile selectByPrimaryKey(Long id);
    int deleteByPrimaryKey(Long id);
    int insert(OthFile record);
    int insertSelective(OthFile record);
    OthFile selectByPrimaryKey(Long id);
    int updateByPrimaryKeySelective(OthFile record);
    int updateByPrimaryKey(OthFile record);
    int deleteByPrimaryKey(Long id);
    List<OthFile> selectByProId(long proId);
}