| | |
| | | package com.dy.pmsGlobal.daoSta; |
| | | |
| | | import cn.hutool.json.JSONObject; |
| | | import com.dy.pmsGlobal.pojoSta.StaAssemblyWorkLast; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Options; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author User |
| | |
| | | |
| | | int insert(StaAssemblyWorkLast record); |
| | | |
| | | @Options(useGeneratedKeys = true, keyProperty = "id") |
| | | // @Options(useGeneratedKeys = true, keyProperty = "id") |
| | | int insertSelective(StaAssemblyWorkLast record); |
| | | |
| | | StaAssemblyWorkLast selectByPrimaryKey(Long id); |
| | |
| | | int updateByPrimaryKey(StaAssemblyWorkLast record); |
| | | |
| | | List<StaAssemblyWorkLast> selectList(StaAssemblyWorkLast record); |
| | | |
| | | Long selectSomeCount(Map<String, Object> params); |
| | | |
| | | List<StaAssemblyWorkLast> selectSome(Map<String, Object> params); |
| | | |
| | | StaAssemblyWorkLast existsEntity(StaAssemblyWorkLast record); |
| | | |
| | | List<JSONObject> queryWorkList(); |
| | | |
| | | List<JSONObject> queryAttendUser(@Param("startTime") Date startTime, @Param("endTime") Date endTime, @Param("todayDt") Date todayDt); |
| | | } |