记得上下班打卡 | git大法好,push需谨慎

Commit c99087e4 authored by 张国柄's avatar 张国柄

Merge branch 'dev' into test

parents 8c673986 0b6140cd
...@@ -35,12 +35,12 @@ ...@@ -35,12 +35,12 @@
<div th:text="*{totalGeneral}">80</div> <div th:text="*{totalGeneral}">80</div>
</div> </div>
</div> </div>
<div class="col-lg-1"> <!-- <div class="col-lg-1">-->
<div> <!-- <div>-->
<div>已兑换总数(张)</div> <!-- <div>已兑换总数(张)</div>-->
<div th:text="*{totalExchange}">0</div> <!-- <div th:text="*{totalExchange}">0</div>-->
</div> <!-- </div>-->
</div> <!-- </div>-->
<!-- <div class="col-lg-1">--> <!-- <div class="col-lg-1">-->
<!-- <div>--> <!-- <div>-->
<!-- <div>兑换库存(张)</div>--> <!-- <div>兑换库存(张)</div>-->
...@@ -100,9 +100,9 @@ ...@@ -100,9 +100,9 @@
<th> <th>
<div class="cell">销售额(元)</div> <div class="cell">销售额(元)</div>
</th> </th>
<th> <!-- <th>-->
<div class="cell">兑换数量</div> <!-- <div class="cell">兑换数量</div>-->
</th> <!-- </th>-->
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
...@@ -137,9 +137,9 @@ ...@@ -137,9 +137,9 @@
<td> <td>
<div class="cell" th:text="${respBean.totalSalePrice}">0</div> <div class="cell" th:text="${respBean.totalSalePrice}">0</div>
</td> </td>
<td> <!-- <td>-->
<div class="cell" th:text="${respBean.totalExchange}">0</div> <!-- <div class="cell" th:text="${respBean.totalExchange}">0</div>-->
</td> <!-- </td>-->
</tr> </tr>
</tbody> </tbody>
</table> </table>
......
package com.liquidnet.service.platform.controller.kylin; //package com.liquidnet.service.platform.controller.kylin;
//
import com.liquidnet.service.base.ResponseDto; //import com.liquidnet.service.base.ResponseDto;
import com.liquidnet.service.platform.service.impl.kylin.DataImpl; //import com.liquidnet.service.platform.service.impl.kylin.DataImpl;
import io.swagger.annotations.Api; //import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; //import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired; //import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping; //import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping; //import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; //import org.springframework.web.bind.annotation.RestController;
//
//
@Api(tags = "数据迁移 (会重复)") //@Api(tags = "数据迁移 (会重复)")
@RestController //@RestController
@RequestMapping("data") //@RequestMapping("data")
public class DataController { //public class DataController {
//
@Autowired // @Autowired
private DataImpl data; // private DataImpl data;
//
@PostMapping("performance") // @PostMapping("performance")
@ApiOperation("演出数据迁移") // @ApiOperation("演出数据迁移")
public ResponseDto<Boolean> performance() { // public ResponseDto<Boolean> performance() {
Boolean result = data.performance(); // Boolean result = data.performance();
return ResponseDto.success(result); // return ResponseDto.success(result);
} // }
//
@PostMapping("order") // @PostMapping("order")
@ApiOperation("订单数据迁移") // @ApiOperation("订单数据迁移")
public ResponseDto<Boolean> order(String month) { // public ResponseDto<Boolean> order(String month) {
Boolean result = data.order(month); // Boolean result = data.order(month);
return ResponseDto.success(result); // return ResponseDto.success(result);
} // }
//
@PostMapping("roadShow") // @PostMapping("roadShow")
@ApiOperation("巡演数据迁移") // @ApiOperation("巡演数据迁移")
public ResponseDto<Boolean> roadShow() { // public ResponseDto<Boolean> roadShow() {
Boolean result = data.roadShow(); // Boolean result = data.roadShow();
return ResponseDto.success(result); // return ResponseDto.success(result);
} // }
//
@PostMapping("childAccount") // @PostMapping("childAccount")
@ApiOperation("验票子账号数据迁移") // @ApiOperation("验票子账号数据迁移")
public ResponseDto<Boolean> childAccount() { // public ResponseDto<Boolean> childAccount() {
Boolean result = data.childAccount(); // Boolean result = data.childAccount();
return ResponseDto.success(result); // return ResponseDto.success(result);
} // }
//
} //}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment