|
@@ -1,268 +0,0 @@
|
|
|
-/*
|
|
|
- * Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
|
|
|
- *
|
|
|
- * 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 org.maxkey.entity;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-import javax.persistence.Column;
|
|
|
-import javax.persistence.Entity;
|
|
|
-import javax.persistence.GeneratedValue;
|
|
|
-import javax.persistence.GenerationType;
|
|
|
-import javax.persistence.Id;
|
|
|
-import javax.persistence.Table;
|
|
|
-import org.apache.mybatis.jpa.persistence.JpaBaseEntity;
|
|
|
-
|
|
|
-/**
|
|
|
- * .
|
|
|
- * @author Crystal.Sea
|
|
|
- *
|
|
|
- */
|
|
|
-@Entity
|
|
|
-@Table(name = "MXK_HISTORY_LOGS")
|
|
|
-public class HistoryLogs extends JpaBaseEntity implements Serializable {
|
|
|
- private static final long serialVersionUID = 6560201093784960493L;
|
|
|
- @Id
|
|
|
- @Column
|
|
|
- @GeneratedValue(strategy = GenerationType.AUTO, generator = "snowflakeid")
|
|
|
- String id;
|
|
|
- @Column
|
|
|
- String serviceName;
|
|
|
- @Column
|
|
|
- String message;
|
|
|
- @Column
|
|
|
- String content;
|
|
|
- @Column
|
|
|
- String messageType;
|
|
|
- @Column
|
|
|
- String operateType;
|
|
|
- @Column
|
|
|
- String username;
|
|
|
- @Column
|
|
|
- String code;
|
|
|
- @Column
|
|
|
- String createdBy;
|
|
|
- @Column
|
|
|
- String createdDate;
|
|
|
- @Column
|
|
|
- String modifiedBy;
|
|
|
- @Column
|
|
|
- String modifiedDate;
|
|
|
- @Column
|
|
|
- private String instId;
|
|
|
-
|
|
|
- private String instName;
|
|
|
- String startDate;
|
|
|
- String endDate;
|
|
|
-
|
|
|
- public HistoryLogs() {
|
|
|
- super();
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * HistoryLogs.
|
|
|
- * @param serviceName String
|
|
|
- * @param code String
|
|
|
- * @param message String
|
|
|
- * @param content String
|
|
|
- * @param messageType String
|
|
|
- * @param operateType String
|
|
|
- * @param createdBy String
|
|
|
- * @param username String
|
|
|
- * @param cname String
|
|
|
- */
|
|
|
- public HistoryLogs(String serviceName, String code,
|
|
|
- String message, String content,
|
|
|
- String messageType,String operateType,
|
|
|
- String createdBy, String username, String cname) {
|
|
|
- super();
|
|
|
- this.serviceName = serviceName;
|
|
|
- this.code = code;
|
|
|
- this.message = message;
|
|
|
- this.content = content;
|
|
|
- this.messageType = messageType;
|
|
|
- this.operateType = operateType;
|
|
|
- this.createdBy = createdBy;
|
|
|
- this.username = username;
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public String getServiceName() {
|
|
|
- return serviceName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setServiceName(String serviceName) {
|
|
|
- this.serviceName = serviceName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMessage() {
|
|
|
- return message;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMessage(String message) {
|
|
|
- this.message = message;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContent() {
|
|
|
- return content;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContent(String content) {
|
|
|
- this.content = content;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMessageType() {
|
|
|
- return messageType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMessageType(String messageType) {
|
|
|
- this.messageType = messageType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOperateType() {
|
|
|
- return operateType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOperateType(String operateType) {
|
|
|
- this.operateType = operateType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getUsername() {
|
|
|
- return username;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public void setUsername(String username) {
|
|
|
- this.username = username;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public String getCode() {
|
|
|
- return code;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCode(String code) {
|
|
|
- this.code = code;
|
|
|
- }
|
|
|
-
|
|
|
- public String getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(String id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreatedBy() {
|
|
|
- return createdBy;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreatedBy(String createdBy) {
|
|
|
- this.createdBy = createdBy;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreatedDate() {
|
|
|
- return createdDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreatedDate(String createdDate) {
|
|
|
- this.createdDate = createdDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModifiedBy() {
|
|
|
- return modifiedBy;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModifiedBy(String modifiedBy) {
|
|
|
- this.modifiedBy = modifiedBy;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModifiedDate() {
|
|
|
- return modifiedDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModifiedDate(String modifiedDate) {
|
|
|
- this.modifiedDate = modifiedDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getStartDate() {
|
|
|
- return startDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStartDate(String startDate) {
|
|
|
- this.startDate = startDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getEndDate() {
|
|
|
- return endDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEndDate(String endDate) {
|
|
|
- this.endDate = endDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getInstId() {
|
|
|
- return instId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInstId(String instId) {
|
|
|
- this.instId = instId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getInstName() {
|
|
|
- return instName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInstName(String instName) {
|
|
|
- this.instName = instName;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- StringBuilder builder = new StringBuilder();
|
|
|
- builder.append("HistoryLogs [id=");
|
|
|
- builder.append(id);
|
|
|
- builder.append(", serviceName=");
|
|
|
- builder.append(serviceName);
|
|
|
- builder.append(", message=");
|
|
|
- builder.append(message);
|
|
|
- builder.append(", content=");
|
|
|
- builder.append(content);
|
|
|
- builder.append(", messageType=");
|
|
|
- builder.append(messageType);
|
|
|
- builder.append(", operateType=");
|
|
|
- builder.append(operateType);
|
|
|
- builder.append(", username=");
|
|
|
- builder.append(username);
|
|
|
- builder.append(", code=");
|
|
|
- builder.append(code);
|
|
|
- builder.append(", createdBy=");
|
|
|
- builder.append(createdBy);
|
|
|
- builder.append(", createdDate=");
|
|
|
- builder.append(createdDate);
|
|
|
- builder.append(", modifiedBy=");
|
|
|
- builder.append(modifiedBy);
|
|
|
- builder.append(", modifiedDate=");
|
|
|
- builder.append(modifiedDate);
|
|
|
- builder.append(", startDate=");
|
|
|
- builder.append(startDate);
|
|
|
- builder.append(", endDate=");
|
|
|
- builder.append(endDate);
|
|
|
- builder.append("]");
|
|
|
- return builder.toString();
|
|
|
- }
|
|
|
-
|
|
|
-}
|