Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
T
tanpu-community
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
探普后端
tanpu-community
Commits
bb74dfcc
Commit
bb74dfcc
authored
Jun 28, 2021
by
刘基明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
主题接口
parent
32018643
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
155 additions
and
0 deletions
+155
-0
ThemeAttachmentEntity.java
...community/dao/entity/community/ThemeAttachmentEntity.java
+139
-0
ThemeAttachmentMapper.java
...community/dao/mapper/community/ThemeAttachmentMapper.java
+16
-0
No files found.
community-service/src/main/java/com/tanpu/community/dao/entity/community/ThemeAttachmentEntity.java
0 → 100644
View file @
bb74dfcc
package
com
.
tanpu
.
community
.
dao
.
entity
.
community
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.NoArgsConstructor
;
import
java.io.Serializable
;
import
java.time.LocalDateTime
;
/**
* <p>
* 主题附件
* </p>
*
* @author xudong
* @since 2021-06-28
*/
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName
(
"theme_attachment"
)
@ApiModel
(
value
=
"ThemeAttachmentEntity对象"
,
description
=
"主题附件"
)
public
class
ThemeAttachmentEntity
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@ApiModelProperty
(
value
=
"id"
)
private
String
id
;
@ApiModelProperty
(
value
=
"主题ID"
)
private
String
themeId
;
@ApiModelProperty
(
value
=
"附件类型"
)
private
Integer
attachType
;
@ApiModelProperty
(
value
=
"附件对应的ID"
)
private
String
attchId
;
private
String
createBy
;
private
LocalDateTime
createTime
;
private
String
updateBy
;
private
LocalDateTime
updateTime
;
private
Integer
deleteTag
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getThemeId
()
{
return
themeId
;
}
public
void
setThemeId
(
String
themeId
)
{
this
.
themeId
=
themeId
;
}
public
Integer
getAttachType
()
{
return
attachType
;
}
public
void
setAttachType
(
Integer
attachType
)
{
this
.
attachType
=
attachType
;
}
public
String
getAttchId
()
{
return
attchId
;
}
public
void
setAttchId
(
String
attchId
)
{
this
.
attchId
=
attchId
;
}
public
String
getCreateBy
()
{
return
createBy
;
}
public
void
setCreateBy
(
String
createBy
)
{
this
.
createBy
=
createBy
;
}
public
LocalDateTime
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
LocalDateTime
createTime
)
{
this
.
createTime
=
createTime
;
}
public
String
getUpdateBy
()
{
return
updateBy
;
}
public
void
setUpdateBy
(
String
updateBy
)
{
this
.
updateBy
=
updateBy
;
}
public
LocalDateTime
getUpdateTime
()
{
return
updateTime
;
}
public
void
setUpdateTime
(
LocalDateTime
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
public
Integer
getDeleteTag
()
{
return
deleteTag
;
}
public
void
setDeleteTag
(
Integer
deleteTag
)
{
this
.
deleteTag
=
deleteTag
;
}
@Override
public
String
toString
()
{
return
"ThemeAttachmentEntity{"
+
"id="
+
id
+
", themeId="
+
themeId
+
", attachType="
+
attachType
+
", attchId="
+
attchId
+
", createBy="
+
createBy
+
", createTime="
+
createTime
+
", updateBy="
+
updateBy
+
", updateTime="
+
updateTime
+
", deleteTag="
+
deleteTag
+
"}"
;
}
}
community-service/src/main/java/com/tanpu/community/dao/mapper/community/ThemeAttachmentMapper.java
0 → 100644
View file @
bb74dfcc
package
com
.
tanpu
.
community
.
dao
.
mapper
.
community
;
import
com.tanpu.community.dao.entity.community.ThemeAttachmentEntity
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* 主题附件 Mapper 接口
* </p>
*
* @author xudong
* @since 2021-06-28
*/
public
interface
ThemeAttachmentMapper
extends
BaseMapper
<
ThemeAttachmentEntity
>
{
}
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