diff --git a/xymanager_dao/src/main/java/com/shxy/xymanager_dao/dao/TerminalScheduleDetailsDao.java b/xymanager_dao/src/main/java/com/shxy/xymanager_dao/dao/TerminalScheduleDetailsDao.java new file mode 100644 index 0000000..39ee26f --- /dev/null +++ b/xymanager_dao/src/main/java/com/shxy/xymanager_dao/dao/TerminalScheduleDetailsDao.java @@ -0,0 +1,17 @@ +package com.shxy.xymanager_dao.dao; + +import com.shxy.xymanager_common.entity.TerminalScheduleDetails; + +public interface TerminalScheduleDetailsDao { + int deleteByPrimaryKey(Integer id); + + int insert(TerminalScheduleDetails record); + + int insertSelective(TerminalScheduleDetails record); + + TerminalScheduleDetails selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TerminalScheduleDetails record); + + int updateByPrimaryKey(TerminalScheduleDetails record); +} \ No newline at end of file