SpmkSpglMapper.java 536 Bytes
Newer Older
yuquan.zhu committed
1
package cn.timer.api.dao.spmk;
2 3
import java.util.List;

yuquan.zhu committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import cn.timer.api.bean.spmk.SpmkSpgl;
import cn.timer.api.dto.spmk.SpmkSpglSortDto;

/**
*  审批管理
* @author Tang 2019-11-22
*/
@Repository
public interface SpmkSpglMapper extends BaseMapper<SpmkSpgl> {

	Integer updateListSortById(List<SpmkSpglSortDto> spmkSpglSortDtos);

	/* SpmkSpglDto selectSpglById(Integer id); */
	
	SpmkSpgl selectSpglById2(Integer id);

}