| | |
| | | /** |
| | | * 系统访问记录表 sys_logininfor |
| | | * |
| | | * @author ruoyi |
| | | * @author jqs |
| | | */ |
| | | public class SysLogininfor extends BaseEntity |
| | | { |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "访问时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date accessTime; |
| | | |
| | | @Excel(name = "登陆端0系统1商户端2员工端3用户端") |
| | | private Integer loginFrom; |
| | | |
| | | public Long getInfoId() |
| | | { |
| | |
| | | { |
| | | this.accessTime = accessTime; |
| | | } |
| | | |
| | | public Integer getLoginFrom() { |
| | | return loginFrom; |
| | | } |
| | | |
| | | public void setLoginFrom(Integer loginFrom) { |
| | | this.loginFrom = loginFrom; |
| | | } |
| | | } |