mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-07 17:55:59 +08:00
140 lines
5.0 KiB
Java
140 lines
5.0 KiB
Java
/*
|
|
* Copyright (C) 2023 杭州白书科技有限公司
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package xyz.playedu.api.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @TableName course_attachment_download_log
|
|
*/
|
|
@TableName(value = "course_attachment_download_log")
|
|
@Data
|
|
public class CourseAttachmentDownloadLog implements Serializable {
|
|
/** */
|
|
@TableId(type = IdType.AUTO)
|
|
private Long id;
|
|
|
|
/** 学员ID */
|
|
@JsonProperty("user_id")
|
|
private Integer userId;
|
|
|
|
/** 课程ID */
|
|
@JsonProperty("course_id")
|
|
private Integer courseId;
|
|
|
|
/** 标题 */
|
|
private String title;
|
|
|
|
/** 课程附件ID */
|
|
@JsonProperty("courser_attachment_id")
|
|
private Integer courserAttachmentId;
|
|
|
|
/** 资源ID */
|
|
private Integer rid;
|
|
|
|
/** IP */
|
|
private String ip;
|
|
|
|
@JsonProperty("created_at")
|
|
private Date createdAt;
|
|
|
|
@TableField(exist = false)
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Override
|
|
public boolean equals(Object that) {
|
|
if (this == that) {
|
|
return true;
|
|
}
|
|
if (that == null) {
|
|
return false;
|
|
}
|
|
if (getClass() != that.getClass()) {
|
|
return false;
|
|
}
|
|
CourseAttachmentDownloadLog other = (CourseAttachmentDownloadLog) that;
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
&& (this.getUserId() == null
|
|
? other.getUserId() == null
|
|
: this.getUserId().equals(other.getUserId()))
|
|
&& (this.getCourseId() == null
|
|
? other.getCourseId() == null
|
|
: this.getCourseId().equals(other.getCourseId()))
|
|
&& (this.getTitle() == null
|
|
? other.getTitle() == null
|
|
: this.getTitle().equals(other.getTitle()))
|
|
&& (this.getCourserAttachmentId() == null
|
|
? other.getCourserAttachmentId() == null
|
|
: this.getCourserAttachmentId().equals(other.getCourserAttachmentId()))
|
|
&& (this.getRid() == null
|
|
? other.getRid() == null
|
|
: this.getRid().equals(other.getRid()))
|
|
&& (this.getIp() == null
|
|
? other.getIp() == null
|
|
: this.getIp().equals(other.getIp()))
|
|
&& (this.getCreatedAt() == null
|
|
? other.getCreatedAt() == null
|
|
: this.getCreatedAt().equals(other.getCreatedAt()));
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
final int prime = 31;
|
|
int result = 1;
|
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
|
|
result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
|
|
result = prime * result + ((getCourseId() == null) ? 0 : getCourseId().hashCode());
|
|
result = prime * result + ((getTitle() == null) ? 0 : getTitle().hashCode());
|
|
result =
|
|
prime * result
|
|
+ ((getCourserAttachmentId() == null)
|
|
? 0
|
|
: getCourserAttachmentId().hashCode());
|
|
result = prime * result + ((getRid() == null) ? 0 : getRid().hashCode());
|
|
result = prime * result + ((getIp() == null) ? 0 : getIp().hashCode());
|
|
result = prime * result + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode());
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(getClass().getSimpleName());
|
|
sb.append(" [");
|
|
sb.append("Hash = ").append(hashCode());
|
|
sb.append(", id=").append(id);
|
|
sb.append(", userId=").append(userId);
|
|
sb.append(", courseId=").append(courseId);
|
|
sb.append(", title=").append(title);
|
|
sb.append(", courserAttachmentId=").append(courserAttachmentId);
|
|
sb.append(", rid=").append(rid);
|
|
sb.append(", ip=").append(ip);
|
|
sb.append(", createdAt=").append(createdAt);
|
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
sb.append("]");
|
|
return sb.toString();
|
|
}
|
|
}
|