Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
C
chinafrica
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
zhengfg
chinafrica
Commits
1461e02e
提交
1461e02e
authored
10月 27, 2019
作者:
luojie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改店铺SQL
上级
9633dd14
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
42 行增加
和
5 行删除
+42
-5
TbCfCommentsInfoEntity.java
...main/java/com/platform/entity/TbCfCommentsInfoEntity.java
+37
-0
TbCfIssueCouponServiceImpl.java
...com/platform/service/impl/TbCfIssueCouponServiceImpl.java
+1
-1
TbCfStoreDao.xml
...dmin/src/main/resources/com/platform/dao/TbCfStoreDao.xml
+1
-1
platform.properties
platform-admin/src/main/resources/dev/platform.properties
+1
-1
platform.properties
platform-admin/src/main/resources/prod/platform.properties
+1
-1
tbcfissuecoupon.js
platform-admin/src/main/webapp/js/sys/tbcfissuecoupon.js
+1
-1
没有找到文件。
platform-admin/src/main/java/com/platform/entity/TbCfCommentsInfoEntity.java
0 → 100644
浏览文件 @
1461e02e
package
com
.
platform
.
entity
;
import
java.util.Date
;
/**
* 评论表主表
*/
public
class
TbCfCommentsInfoEntity
{
//评论主键id
private
String
id
;
//被评论者的id
private
String
ownerId
;
//评论者id
private
String
fromId
;
//评论者名字
private
String
fromName
;
//评论者头像
private
String
fromAvatar
;
//获得点赞的数量
private
Integer
likeNum
;
//评论内容
private
String
content
;
//创建时间
private
Date
createTime
;
//更新时间
private
Date
updateTime
;
}
\ No newline at end of file
platform-admin/src/main/java/com/platform/service/impl/TbCfIssueCouponServiceImpl.java
浏览文件 @
1461e02e
...
...
@@ -61,7 +61,7 @@ public class TbCfIssueCouponServiceImpl implements TbCfIssueCouponService {
tbCfIssueCoupon
.
setCouponId
(
tbCfCouponIssue
.
getCouponId
());
tbCfIssueCoupon
.
setUserId
(
userId
);
tbCfIssueCoupon
.
setNick
(
nick
);
tbCfIssueCoupon
.
setEnableFlag
(
0
);
tbCfIssueCoupon
.
setEnableFlag
(
1
);
tbCfIssueCoupon
.
setCreateTime
(
new
Date
());
tbCfIssueCoupon
.
setIssueId
(
tbCfCouponIssue
.
getCouponIssueId
());
return
tbCfIssueCouponDao
.
save
(
tbCfIssueCoupon
);
...
...
platform-admin/src/main/resources/com/platform/dao/TbCfStoreDao.xml
浏览文件 @
1461e02e
...
...
@@ -40,7 +40,7 @@
select
*
from tb_cf_store
WHERE 1=1
WHERE 1=1
and enable_flag!=0
<if
test=
"name != null and name.trim() != ''"
>
AND name LIKE concat('%',#{name},'%')
</if>
...
...
platform-admin/src/main/resources/dev/platform.properties
浏览文件 @
1461e02e
...
...
@@ -11,4 +11,4 @@ jdbc.maxActive=30
jdbc.minPoolSize
=
2
jdbc.maxIdleTime
=
30000
jdbc.idleConnectionTestPeriod
=
100
\ No newline at end of file
jdbc.idleConnectionTestPeriod
=
100
\ No newline at end of file
platform-admin/src/main/resources/prod/platform.properties
浏览文件 @
1461e02e
...
...
@@ -7,4 +7,4 @@ jdbc.maxActive=30
jdbc.minPoolSize
=
2
jdbc.maxIdleTime
=
30000
jdbc.idleConnectionTestPeriod
=
100
\ No newline at end of file
jdbc.idleConnectionTestPeriod
=
100
\ No newline at end of file
platform-admin/src/main/webapp/js/sys/tbcfissuecoupon.js
浏览文件 @
1461e02e
...
...
@@ -10,7 +10,7 @@ $(function () {
{
label
:
'用户id'
,
name
:
'userId'
,
index
:
'user_id'
,
width
:
80
,
hidden
:
true
},
{
label
:
'用户昵称'
,
name
:
'nick'
,
index
:
'nick'
,
width
:
80
},
{
label
:
'创建日期'
,
name
:
'createTime'
,
index
:
'create_time'
,
width
:
80
},
{
label
:
'是否已经使用(0
未使用,1已
使用)'
,
name
:
'enableFlag'
,
index
:
'enable_flag'
,
width
:
80
}
{
label
:
'是否已经使用(0
已使用,1未
使用)'
,
name
:
'enableFlag'
,
index
:
'enable_flag'
,
width
:
80
}
]
});
});
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论