代码优化

This commit is contained in:
2025-10-13 10:43:08 +08:00
parent b6818b179c
commit bc3ed2d872
40 changed files with 3189 additions and 788 deletions
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("achievement")
@TableName("t_achievement")
public class Achievement extends BaseEntity {
/**
@@ -19,7 +19,7 @@ import lombok.EqualsAndHashCode;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("comment")
@TableName("t_comment")
public class Comment extends BaseEntity {
/**
@@ -19,7 +19,7 @@ import lombok.EqualsAndHashCode;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("community_post")
@TableName("t_community_post")
public class CommunityPost extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("conversation")
@TableName("t_conversation")
public class Conversation extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("coze_api_call")
@TableName("t_coze_api_call")
public class CozeApiCall extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("diary_comment")
@TableName("t_diary_comment")
public class DiaryComment extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("diary_post")
@TableName("t_diary_post")
public class DiaryPost extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("emotion_analysis")
@TableName("t_emotion_analysis")
public class EmotionAnalysis extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDate;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("emotion_record")
@TableName("t_emotion_record")
public class EmotionRecord extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("growth_topic")
@TableName("t_growth_topic")
public class GrowthTopic extends BaseEntity {
/**
@@ -21,7 +21,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("guest_user")
@TableName("t_guest_user")
public class GuestUser extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("location_pin")
@TableName("t_location_pin")
public class LocationPin extends BaseEntity {
/**
@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("message")
@TableName("t_message")
public class Message extends BaseEntity {
/**
@@ -21,7 +21,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("reward")
@TableName("t_reward")
public class Reward extends BaseEntity {
/**
@@ -21,7 +21,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("topic_interaction")
@TableName("t_topic_interaction")
public class TopicInteraction extends BaseEntity {
/**
@@ -23,7 +23,7 @@ import java.time.LocalDateTime;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("user")
@TableName("t_user")
public class User extends BaseEntity {
/**
@@ -19,7 +19,7 @@ import lombok.EqualsAndHashCode;
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("user_stats")
@TableName("t_user_stats")
public class UserStats extends BaseEntity {
/**