copy from modules/mainPart/src/main/resources/mapper/basicInfo/taskReliability/TaskDao.xml
copy to modules/mainPart/src/main/resources/mapper/taskReliability/TaskDao.xml
File was copied from modules/mainPart/src/main/resources/mapper/basicInfo/taskReliability/TaskDao.xml |
| | |
| | | |
| | | <select id="getList" resultType="com.zt.life.modules.mainPart.taskReliability.model.Task"> |
| | | select a.* |
| | | from task a |
| | | FROM |
| | | task a |
| | | <where> |
| | | a.is_delete = 0 |
| | | and a.product_id=${productId} |
| | |
| | | ORDER BY ${orderBySql} |
| | | </if> |
| | | </select> |
| | | <select id="getTaskList" resultType="com.zt.life.modules.mainPart.taskReliability.model.Task"> |
| | | select a.id,a.task_name as name |
| | | from task a |
| | | where |
| | | a.is_delete = 0 |
| | | and a.product_id=${productId} |
| | | </select> |
| | | |
| | | </mapper> |