package com.dy.pmsGlobal.daoOth;
|
|
import com.dy.pmsGlobal.pojoOth.OthFile;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
@Mapper
|
public interface OthFileMapper {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(OthFile record);
|
|
int insertSelective(OthFile record);
|
|
OthFile selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(OthFile record);
|
|
int updateByPrimaryKey(OthFile record);
|
|
List<OthFile> selectByProId(long proId);
|
}
|