package com.dy.pmsGlobal.daoPr;
|
|
import com.dy.pmsGlobal.pojoPr.PrProductionProcess;
|
import org.apache.ibatis.annotations.MapKey;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @author 小明
|
* @description 针对表【pr_production_process(生产流程表)】的数据库操作Mapper
|
* @createDate 2024-05-25 09:22:03
|
* @Entity com.dy.pmsGlobal.pojoPr.PrProductionProcess
|
*/
|
@Mapper
|
public interface PrProductionProcessMapper {
|
|
int deleteByPrimaryKey(Long id);
|
|
int insertSelective(PrProductionProcess record);
|
|
PrProductionProcess selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(PrProductionProcess record);
|
|
Long selectSomeCount(Map<String,Object> params);
|
|
List<PrProductionProcess> selectSome(Map<String,Object> params);
|
|
int deleteLogicById(Long id);
|
|
@MapKey("id")
|
List<Map<String,String>> queryAll();
|
}
|