parent
1f26d2950d
commit
e27794b092
8 changed files with 119 additions and 9 deletions
@ -0,0 +1,44 @@ |
|||||||
|
package com.daqing.framework.domain.hrms; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
@Data |
||||||
|
@TableName("hrms_login_log") |
||||||
|
public class LoginLogEntity { |
||||||
|
|
||||||
|
@TableId(type = IdType.AUTO) |
||||||
|
private int id; |
||||||
|
|
||||||
|
//用户id
|
||||||
|
private Long userId; |
||||||
|
|
||||||
|
//登录次数
|
||||||
|
private int loginNum; |
||||||
|
|
||||||
|
//创建时间
|
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
//最新登录时间
|
||||||
|
private Date newestTime; |
||||||
|
|
||||||
|
//员工姓名
|
||||||
|
private String empName; |
||||||
|
|
||||||
|
//工号
|
||||||
|
private String jobNumber; |
||||||
|
|
||||||
|
//联系电话
|
||||||
|
private String phone; |
||||||
|
|
||||||
|
//职位
|
||||||
|
private String posName; |
||||||
|
|
||||||
|
//部门名称
|
||||||
|
private String deptName; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,32 @@ |
|||||||
|
package com.daqing.framework.domain.hrms.request; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* 登录日志请求体对象 |
||||||
|
* |
||||||
|
* @author gongsj |
||||||
|
* @email gongsj@gmail.com |
||||||
|
* @date 2020-09-07 17:12:14 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class UserLoginLogRequest implements Serializable { |
||||||
|
/** |
||||||
|
* 姓名 |
||||||
|
*/ |
||||||
|
private String name; |
||||||
|
/** |
||||||
|
* 工号 |
||||||
|
*/ |
||||||
|
private String jobNumber; |
||||||
|
/** |
||||||
|
* 开始时间 |
||||||
|
*/ |
||||||
|
private String startTime; |
||||||
|
/** |
||||||
|
* 结束时间 |
||||||
|
*/ |
||||||
|
private String endTime; |
||||||
|
} |
Loading…
Reference in new issue