| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.flow.pojo.Loginjilu; |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | public interface LoginJiLuMapper extends BaseMapper<Loginjilu> { |
| | | @Select({"select * from loginjilu where none = 0"}) |
| | | @Select({"select * from loginjilu where none = 0 ORDER BY LoginDate DESC "}) |
| | | List<Loginjilu> findAllLoginJiLu(); |
| | | |
| | | @Select({"select * from loginjilu where none = 0 and LoginCompany = #{Zong}"}) |
| | | List<Loginjilu> findAllLoginJiLuZi(String var1); |
| | | @Select({"select * from loginjilu where none = 0 and LoginCompany = #{Zong} ORDER BY LoginDate DESC"}) |
| | | List<Loginjilu> findAllLoginJiLuZi(@Param("Zong")String var1); |
| | | |
| | | @Select({"select COUNT(*) from loginjilu where to_days(logindate) = to_days(now()) and none = 0"}) |
| | | String jrfwl(); |