publish 2.0.0.rc13

This commit is contained in:
曾文豪
2024-08-05 14:18:50 +08:00
parent 333d283e24
commit be08001f3f
12 changed files with 67 additions and 82 deletions

View File

@@ -1,14 +1,17 @@
package com.tiesheng.web.pojos.dao;
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.tiesheng.util.pojos.DaoBase;
import java.util.Date;
/**
* 日志-消息
*/
@TableName(value = "core_log_message")
public class CoreLogMessage extends DaoBase {
* 日志-调用
*/
@TableName(value = "core_log_api")
public class CoreLogApi extends DaoBase {
/**
* 类型
*/
@@ -16,10 +19,10 @@ public class CoreLogMessage extends DaoBase {
private String type;
/**
* 发送对象
* 请求地址
*/
@TableField(value = "target")
private String target;
@TableField(value = "url")
private String url;
/**
* 发送内容
@@ -58,21 +61,21 @@ public class CoreLogMessage extends DaoBase {
}
/**
* 获取发送对象
* 获取请求地址
*
* @return target - 发送对象
* @return url - 请求地址
*/
public String getTarget() {
return target;
public String getUrl() {
return url;
}
/**
* 设置发送对象
* 设置请求地址
*
* @param target 发送对象
* @param url 请求地址
*/
public void setTarget(String target) {
this.target = target;
public void setUrl(String url) {
this.url = url;
}
/**
@@ -128,4 +131,4 @@ public class CoreLogMessage extends DaoBase {
public void setResult(Integer result) {
this.result = result;
}
}
}