代码INIT,修改基本框架

This commit is contained in:
limqhz
2022-05-01 22:41:10 +08:00
parent 3fdb3799ff
commit 5e12c34a3d
63 changed files with 189 additions and 119 deletions

View File

@@ -16,13 +16,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_blog")
@TableName("qn_blog")
@ApiModel(value="Blog对象", description="")
public class Blog implements Serializable {

View File

@@ -15,13 +15,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_blog_category")
@TableName("qn_blog_category")
@ApiModel(value="BlogCategory对象", description="")
public class BlogCategory implements Serializable {

View File

@@ -16,13 +16,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_comment")
@TableName("qn_comment")
@ApiModel(value="Comment对象", description="")
public class Comment implements Serializable {

View File

@@ -14,13 +14,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-07-08
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_download")
@TableName("qn_download")
@ApiModel(value="Download对象", description="")
public class Download implements Serializable {

View File

@@ -12,13 +12,13 @@ import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_invite")
@TableName("qn_invite")
@ApiModel(value="Invite邀请码", description="邀请码")
public class Invite implements Serializable {

View File

@@ -16,13 +16,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_question")
@TableName("qn_question")
@ApiModel(value="Question对象", description="")
public class Question implements Serializable {

View File

@@ -15,13 +15,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_question_category")
@TableName("qn_question_category")
@ApiModel(value="QuestionCategory对象", description="")
public class QuestionCategory implements Serializable {

View File

@@ -16,13 +16,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-07-01
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_say")
@TableName("qn_say")
@ApiModel(value="Say对象", description="")
public class Say implements Serializable {

View File

@@ -16,13 +16,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_user")
@TableName("qn_user")
@ApiModel(value="User对象", description="")
public class User implements Serializable {

View File

@@ -15,13 +15,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_user_info")
@TableName("qn_user_info")
@ApiModel(value="UserInfo对象", description="")
public class UserInfo implements Serializable {

View File

@@ -16,13 +16,13 @@ import lombok.experimental.Accessors;
*
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("ks_user_role")
@TableName("qn_user_role")
@ApiModel(value="UserRole对象", description="")
public class UserRole implements Serializable {