Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xinrenli
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
郑云飞
xinrenli
Commits
02814976
Commit
02814976
authored
Mar 01, 2023
by
郑云飞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
9a998438
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
9 deletions
+12
-9
pom.xml
+1
-0
ruoyi-admin/pom.xml
+3
-2
xinrenli/pom.xml
+1
-1
xinrenli/src/main/java/com/yongqi/xinrenli/entity/Article.java
+7
-6
No files found.
pom.xml
View file @
02814976
...
...
@@ -331,6 +331,7 @@
<module>
ruoyi-generator
</module>
<module>
ruoyi-common
</module>
<module>
ruoyi-demo
</module>
<module>
xinrenli
</module>
<module>
ruoyi-extend
</module>
<module>
ruoyi-oss
</module>
<module>
ruoyi-sms
</module>
...
...
ruoyi-admin/pom.xml
View file @
02814976
...
...
@@ -18,10 +18,11 @@
<dependencies>
<!--xinrenli-->
<dependency>
<groupId>
com.
yongq
i
</groupId>
<groupId>
com.
ruoy
i
</groupId>
<artifactId>
xinrenli
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<version>
4.5.0
</version>
</dependency>
<!-- spring-boot-devtools -->
<dependency>
<groupId>
org.springframework.boot
</groupId>
...
...
xinrenli/pom.xml
View file @
02814976
...
...
@@ -7,7 +7,7 @@
<groupId>
com.ruoyi
</groupId>
<version>
4.5.0
</version>
</parent>
<modelVersion>
4.
0
.0
</modelVersion>
<modelVersion>
4.
5
.0
</modelVersion>
<artifactId>
xinrenli
</artifactId>
...
...
xinrenli/src/main/java/com/yongqi/xinrenli/entity/Article.java
View file @
02814976
...
...
@@ -3,6 +3,7 @@ package com.yongqi.xinrenli.entity;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.experimental.Accessors
;
...
...
@@ -22,25 +23,25 @@ import java.io.Serializable;
@EqualsAndHashCode
(
callSuper
=
false
)
@Accessors
(
chain
=
true
)
@TableName
(
"by_article"
)
@
ApiModel
(
valu
e
=
"Article对象"
,
description
=
"文章表"
)
@
Schema
(
nam
e
=
"Article对象"
,
description
=
"文章表"
)
public
class
Article
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@
ApiModelProperty
(
valu
e
=
"自增id"
)
@
Schema
(
nam
e
=
"自增id"
)
@TableId
(
value
=
"id"
,
type
=
IdType
.
AUTO
)
private
Long
id
;
@
ApiModelProperty
(
valu
e
=
"用户id"
)
@
Schema
(
nam
e
=
"用户id"
)
private
String
userId
;
@
ApiModelProperty
(
valu
e
=
"动态标题"
)
@
Schema
(
nam
e
=
"动态标题"
)
private
String
title
;
@
ApiModelProperty
(
valu
e
=
"动态内容"
)
@
Schema
(
nam
e
=
"动态内容"
)
private
String
content
;
@
ApiModelProperty
(
valu
e
=
"添加图片地址"
)
@
Schema
(
nam
e
=
"添加图片地址"
)
private
String
imageSrc
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment