记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
c99087e4
Commit
c99087e4
authored
Aug 01, 2021
by
张国柄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into test
parents
8c673986
0b6140cd
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
359 additions
and
359 deletions
+359
-359
performancesStatic.html
...lates/zhengzai/kylin/performances/performancesStatic.html
+12
-12
PlatformDMController.java
...ervice/platform/controller/adam/PlatformDMController.java
+298
-298
DataController.java
...net/service/platform/controller/kylin/DataController.java
+49
-49
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/performances/performancesStatic.html
View file @
c99087e4
...
...
@@ -35,12 +35,12 @@
<div
th:text=
"*{totalGeneral}"
>
80
</div>
</div>
</div>
<div
class=
"col-lg-1"
>
<div
>
<div>
已兑换总数(张)
</div
>
<div
th:text=
"*{totalExchange}"
>
0
</div
>
</div
>
</div
>
<!-- <div class="col-lg-1">--
>
<!-- <div>--
>
<!-- <div>已兑换总数(张)</div>--
>
<!-- <div th:text="*{totalExchange}">0</div>--
>
<!-- </div>--
>
<!-- </div>--
>
<!-- <div class="col-lg-1">-->
<!-- <div>-->
<!-- <div>兑换库存(张)</div>-->
...
...
@@ -100,9 +100,9 @@
<th>
<div
class=
"cell"
>
销售额(元)
</div>
</th>
<th
>
<div
class=
"cell"
>
兑换数量
</div
>
</th
>
<!-- <th>--
>
<!-- <div class="cell">兑换数量</div>--
>
<!-- </th>--
>
</tr>
</thead>
<tbody>
...
...
@@ -137,9 +137,9 @@
<td>
<div
class=
"cell"
th:text=
"${respBean.totalSalePrice}"
>
0
</div>
</td>
<td
>
<div
class=
"cell"
th:text=
"${respBean.totalExchange}"
>
0
</div
>
</td
>
<!-- <td>--
>
<!-- <div class="cell" th:text="${respBean.totalExchange}">0</div>--
>
<!-- </td>--
>
</tr>
</tbody>
</table>
...
...
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/java/com/liquidnet/service/platform/controller/adam/PlatformDMController.java
View file @
c99087e4
This diff is collapsed.
Click to expand it.
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/java/com/liquidnet/service/platform/controller/kylin/DataController.java
View file @
c99087e4
package
com
.
liquidnet
.
service
.
platform
.
controller
.
kylin
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.platform.service.impl.kylin.DataImpl
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
@Api
(
tags
=
"数据迁移 (会重复)"
)
@RestController
@RequestMapping
(
"data"
)
public
class
DataController
{
@Autowired
private
DataImpl
data
;
@PostMapping
(
"performance"
)
@ApiOperation
(
"演出数据迁移"
)
public
ResponseDto
<
Boolean
>
performance
()
{
Boolean
result
=
data
.
performance
();
return
ResponseDto
.
success
(
result
);
}
@PostMapping
(
"order"
)
@ApiOperation
(
"订单数据迁移"
)
public
ResponseDto
<
Boolean
>
order
(
String
month
)
{
Boolean
result
=
data
.
order
(
month
);
return
ResponseDto
.
success
(
result
);
}
@PostMapping
(
"roadShow"
)
@ApiOperation
(
"巡演数据迁移"
)
public
ResponseDto
<
Boolean
>
roadShow
()
{
Boolean
result
=
data
.
roadShow
();
return
ResponseDto
.
success
(
result
);
}
@PostMapping
(
"childAccount"
)
@ApiOperation
(
"验票子账号数据迁移"
)
public
ResponseDto
<
Boolean
>
childAccount
()
{
Boolean
result
=
data
.
childAccount
();
return
ResponseDto
.
success
(
result
);
}
}
//
package com.liquidnet.service.platform.controller.kylin;
//
//
import com.liquidnet.service.base.ResponseDto;
//
import com.liquidnet.service.platform.service.impl.kylin.DataImpl;
//
import io.swagger.annotations.Api;
//
import io.swagger.annotations.ApiOperation;
//
import org.springframework.beans.factory.annotation.Autowired;
//
import org.springframework.web.bind.annotation.PostMapping;
//
import org.springframework.web.bind.annotation.RequestMapping;
//
import org.springframework.web.bind.annotation.RestController;
//
//
//
@Api(tags = "数据迁移 (会重复)")
//
@RestController
//
@RequestMapping("data")
//
public class DataController {
//
//
@Autowired
//
private DataImpl data;
//
//
@PostMapping("performance")
//
@ApiOperation("演出数据迁移")
//
public ResponseDto<Boolean> performance() {
//
Boolean result = data.performance();
//
return ResponseDto.success(result);
//
}
//
//
@PostMapping("order")
//
@ApiOperation("订单数据迁移")
//
public ResponseDto<Boolean> order(String month) {
//
Boolean result = data.order(month);
//
return ResponseDto.success(result);
//
}
//
//
@PostMapping("roadShow")
//
@ApiOperation("巡演数据迁移")
//
public ResponseDto<Boolean> roadShow() {
//
Boolean result = data.roadShow();
//
return ResponseDto.success(result);
//
}
//
//
@PostMapping("childAccount")
//
@ApiOperation("验票子账号数据迁移")
//
public ResponseDto<Boolean> childAccount() {
//
Boolean result = data.childAccount();
//
return ResponseDto.success(result);
//
}
//
//
}
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