1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-21 01:10:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

创建预授权URL后端日志记录

This commit is contained in:
2022-04-08 18:44:32 +08:00
parent 2df583ab61
commit b4d7f858a3
11 changed files with 220 additions and 120 deletions

View File

@@ -2,11 +2,11 @@ package plus.bookshelf.Dao.DO;
import java.util.Date;
public class FileOperationDO {
public class CosPresignedUrlGenerateLogDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_operation_log.id
* This field corresponds to the database column cos_presigned_url_generate_log.id
*
* @mbg.generated
*/
@@ -15,7 +15,7 @@ public class FileOperationDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_operation_log.user_id
* This field corresponds to the database column cos_presigned_url_generate_log.user_id
*
* @mbg.generated
*/
@@ -24,7 +24,7 @@ public class FileOperationDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_operation_log.time
* This field corresponds to the database column cos_presigned_url_generate_log.time
*
* @mbg.generated
*/
@@ -33,16 +33,16 @@ public class FileOperationDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_operation_log.expire_minute
* This field corresponds to the database column cos_presigned_url_generate_log.expire_minute
*
* @mbg.generated
*/
private String expireMinute;
private Integer expireMinute;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_operation_log.method
* This field corresponds to the database column cos_presigned_url_generate_log.method
*
* @mbg.generated
*/
@@ -51,7 +51,7 @@ public class FileOperationDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_operation_log.file_path
* This field corresponds to the database column cos_presigned_url_generate_log.file_path
*
* @mbg.generated
*/
@@ -60,7 +60,7 @@ public class FileOperationDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_operation_log.url_guid
* This field corresponds to the database column cos_presigned_url_generate_log.url_guid
*
* @mbg.generated
*/
@@ -68,9 +68,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_operation_log.id
* This method returns the value of the database column cos_presigned_url_generate_log.id
*
* @return the value of file_operation_log.id
* @return the value of cos_presigned_url_generate_log.id
*
* @mbg.generated
*/
@@ -80,9 +80,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_operation_log.id
* This method sets the value of the database column cos_presigned_url_generate_log.id
*
* @param id the value for file_operation_log.id
* @param id the value for cos_presigned_url_generate_log.id
*
* @mbg.generated
*/
@@ -92,9 +92,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_operation_log.user_id
* This method returns the value of the database column cos_presigned_url_generate_log.user_id
*
* @return the value of file_operation_log.user_id
* @return the value of cos_presigned_url_generate_log.user_id
*
* @mbg.generated
*/
@@ -104,9 +104,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_operation_log.user_id
* This method sets the value of the database column cos_presigned_url_generate_log.user_id
*
* @param userId the value for file_operation_log.user_id
* @param userId the value for cos_presigned_url_generate_log.user_id
*
* @mbg.generated
*/
@@ -116,9 +116,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_operation_log.time
* This method returns the value of the database column cos_presigned_url_generate_log.time
*
* @return the value of file_operation_log.time
* @return the value of cos_presigned_url_generate_log.time
*
* @mbg.generated
*/
@@ -128,9 +128,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_operation_log.time
* This method sets the value of the database column cos_presigned_url_generate_log.time
*
* @param time the value for file_operation_log.time
* @param time the value for cos_presigned_url_generate_log.time
*
* @mbg.generated
*/
@@ -140,33 +140,33 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_operation_log.expire_minute
* This method returns the value of the database column cos_presigned_url_generate_log.expire_minute
*
* @return the value of file_operation_log.expire_minute
* @return the value of cos_presigned_url_generate_log.expire_minute
*
* @mbg.generated
*/
public String getExpireMinute() {
public Integer getExpireMinute() {
return expireMinute;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_operation_log.expire_minute
* This method sets the value of the database column cos_presigned_url_generate_log.expire_minute
*
* @param expireMinute the value for file_operation_log.expire_minute
* @param expireMinute the value for cos_presigned_url_generate_log.expire_minute
*
* @mbg.generated
*/
public void setExpireMinute(String expireMinute) {
this.expireMinute = expireMinute == null ? null : expireMinute.trim();
public void setExpireMinute(Integer expireMinute) {
this.expireMinute = expireMinute;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_operation_log.method
* This method returns the value of the database column cos_presigned_url_generate_log.method
*
* @return the value of file_operation_log.method
* @return the value of cos_presigned_url_generate_log.method
*
* @mbg.generated
*/
@@ -176,9 +176,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_operation_log.method
* This method sets the value of the database column cos_presigned_url_generate_log.method
*
* @param method the value for file_operation_log.method
* @param method the value for cos_presigned_url_generate_log.method
*
* @mbg.generated
*/
@@ -188,9 +188,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_operation_log.file_path
* This method returns the value of the database column cos_presigned_url_generate_log.file_path
*
* @return the value of file_operation_log.file_path
* @return the value of cos_presigned_url_generate_log.file_path
*
* @mbg.generated
*/
@@ -200,9 +200,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_operation_log.file_path
* This method sets the value of the database column cos_presigned_url_generate_log.file_path
*
* @param filePath the value for file_operation_log.file_path
* @param filePath the value for cos_presigned_url_generate_log.file_path
*
* @mbg.generated
*/
@@ -212,9 +212,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_operation_log.url_guid
* This method returns the value of the database column cos_presigned_url_generate_log.url_guid
*
* @return the value of file_operation_log.url_guid
* @return the value of cos_presigned_url_generate_log.url_guid
*
* @mbg.generated
*/
@@ -224,9 +224,9 @@ public class FileOperationDO {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_operation_log.url_guid
* This method sets the value of the database column cos_presigned_url_generate_log.url_guid
*
* @param urlGuid the value for file_operation_log.url_guid
* @param urlGuid the value for cos_presigned_url_generate_log.url_guid
*
* @mbg.generated
*/