package com.artfess.uc.dao; import org.apache.ibatis.annotations.Param; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.artfess.uc.model.LoginLog; /** * *
 
 * 描述:用户登录日志表 DAO接口
 * 构建组:x7
 * 作者:zhangxw
 * 邮箱:zhangxw@jee-soft.cn
 * 日期:2020-06-19 18:42:21
 * 版权:广州宏天软件股份有限公司
 * 
*/ public interface LoginLogDao extends BaseMapper { /** *删除所有已逻辑删除的实体(物理删除) * @param entityId 实体对象ID */ Integer removePhysical(); /** * 根据Account取定义对象。 * @param account * @return */ LoginLog getByAccount(@Param("account") String account); }