|
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.gree.mall.manager.annotation.ZfireList;
|
|
|
import com.gree.mall.manager.bean.contract.AuthBean;
|
|
|
import com.gree.mall.manager.bean.contract.WebsitContractSignRecordBean;
|
|
|
+import com.gree.mall.manager.bean.contract.WebsitContractSignRecordCount;
|
|
|
import com.gree.mall.manager.bean.contract.WebsitContractSignVO;
|
|
|
import com.gree.mall.manager.enums.contract.SignContractStatusEnum;
|
|
|
import com.gree.mall.manager.helper.ResponseHelper;
|
|
@@ -48,6 +49,13 @@ public class WebsitContractSignController {
|
|
|
FieldUtils.exportData(list.getRecords(), zfireParamBean.getExportFields(), request, response);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/count")
|
|
|
+ @ApiOperation(value = "网点合同签约-统计")
|
|
|
+ public ResponseHelper<WebsitContractSignRecordCount> count() {
|
|
|
+ WebsitContractSignRecordCount count = websitContractSignLogic.count();
|
|
|
+ return ResponseHelper.success(count);
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/detail")
|
|
|
@ApiOperation(value = "网点合同签约-详情")
|
|
|
public ResponseHelper<WebsitContractSignRecordBean> detail(@RequestParam String id) {
|