30 changed files with 2387 additions and 13 deletions
@ -0,0 +1,80 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import java.util.Date; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
/** |
||||
* 基础客户基地表 实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_basicdata_customer_base") |
||||
@ApiModel(value = "BasicdataCustomerBase对象", description = "基础客户基地表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataCustomerBaseEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
/** |
||||
* 基地名称 |
||||
*/ |
||||
@ApiModelProperty(value = "基地名称") |
||||
private String baseName; |
||||
/** |
||||
* 基地编码 |
||||
*/ |
||||
@ApiModelProperty(value = "基地编码") |
||||
private String baseCode; |
||||
/** |
||||
* 客户ID |
||||
*/ |
||||
@ApiModelProperty(value = "客户ID") |
||||
private String clientId; |
||||
|
||||
} |
@ -0,0 +1,80 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import java.util.Date; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
/** |
||||
* 基础客户商场表 实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_basicdata_customer_store") |
||||
@ApiModel(value = "BasicdataCustomerStore对象", description = "基础客户商场表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataCustomerStoreEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
/** |
||||
* 商场名称 |
||||
*/ |
||||
@ApiModelProperty(value = "商场名称") |
||||
private String storeName; |
||||
/** |
||||
* 商场编码 |
||||
*/ |
||||
@ApiModelProperty(value = "商场编码") |
||||
private String storeCode; |
||||
/** |
||||
* 客户ID |
||||
*/ |
||||
@ApiModelProperty(value = "客户ID") |
||||
private String clientId; |
||||
|
||||
} |
@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.feign; |
||||
|
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
/** |
||||
* 基础客户基地表 Feign接口类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@FeignClient( |
||||
value = "blade-basicdataCustomerBase" |
||||
) |
||||
public interface IBasicdataCustomerBaseClient { |
||||
|
||||
String API_PREFIX = "/client"; |
||||
String TOP = API_PREFIX + "/top121"; |
||||
|
||||
/** |
||||
* 获取基础客户基地表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<BasicdataCustomerBaseEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.feign; |
||||
|
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
/** |
||||
* 基础客户商场表 Feign接口类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@FeignClient( |
||||
value = "blade-basicdataCustomerStore" |
||||
) |
||||
public interface IBasicdataCustomerStoreClient { |
||||
|
||||
String API_PREFIX = "/client"; |
||||
String TOP = API_PREFIX + "/top1233333"; |
||||
|
||||
/** |
||||
* 获取基础客户商场表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<BasicdataCustomerStoreEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.vo; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 基础客户基地表 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataCustomerBaseVO extends BasicdataCustomerBaseEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.vo; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 基础客户商场表 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataCustomerStoreVO extends BasicdataCustomerStoreEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,150 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.controller; |
||||
|
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import io.swagger.annotations.ApiParam; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import lombok.AllArgsConstructor; |
||||
import javax.validation.Valid; |
||||
|
||||
import org.springblade.core.secure.BladeUser; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springframework.web.bind.annotation.*; |
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerBaseVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerBaseExcel; |
||||
import com.logpm.basicdata.service.IBasicdataCustomerBaseService; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.utils.DateUtil; |
||||
import org.springblade.core.excel.util.ExcelUtil; |
||||
import org.springblade.core.tool.constant.BladeConstant; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
import java.util.Map; |
||||
import java.util.List; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
/** |
||||
* 基础客户基地表 控制器 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/basicdataCustomerBase") |
||||
@Api(value = "基础客户基地表", tags = "基础客户基地表接口") |
||||
public class BasicdataCustomerBaseController extends BladeController { |
||||
|
||||
private final IBasicdataCustomerBaseService basicdataCustomerBaseService; |
||||
|
||||
/** |
||||
* 基础客户基地表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入basicdataCustomerBase") |
||||
public R<BasicdataCustomerBaseEntity> detail(BasicdataCustomerBaseEntity basicdataCustomerBase) { |
||||
BasicdataCustomerBaseEntity detail = basicdataCustomerBaseService.getOne(Condition.getQueryWrapper(basicdataCustomerBase)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 基础客户基地表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入basicdataCustomerBase") |
||||
public R<IPage<BasicdataCustomerBaseEntity>> list(@ApiIgnore @RequestParam Map<String, Object> basicdataCustomerBase, Query query) { |
||||
IPage<BasicdataCustomerBaseEntity> pages = basicdataCustomerBaseService.page(Condition.getPage(query), Condition.getQueryWrapper(basicdataCustomerBase, BasicdataCustomerBaseEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户基地表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入basicdataCustomerBase") |
||||
public R<IPage<BasicdataCustomerBaseVO>> page(BasicdataCustomerBaseVO basicdataCustomerBase, Query query) { |
||||
IPage<BasicdataCustomerBaseVO> pages = basicdataCustomerBaseService.selectBasicdataCustomerBasePage(Condition.getPage(query), basicdataCustomerBase); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户基地表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入basicdataCustomerBase") |
||||
public R save(@Valid @RequestBody BasicdataCustomerBaseEntity basicdataCustomerBase) { |
||||
return R.status(basicdataCustomerBaseService.save(basicdataCustomerBase)); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户基地表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入basicdataCustomerBase") |
||||
public R update(@Valid @RequestBody BasicdataCustomerBaseEntity basicdataCustomerBase) { |
||||
return R.status(basicdataCustomerBaseService.updateById(basicdataCustomerBase)); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户基地表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入basicdataCustomerBase") |
||||
public R submit(@Valid @RequestBody BasicdataCustomerBaseEntity basicdataCustomerBase) { |
||||
return R.status(basicdataCustomerBaseService.saveOrUpdate(basicdataCustomerBase)); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户基地表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(basicdataCustomerBaseService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-basicdataCustomerBase") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入basicdataCustomerBase") |
||||
public void exportBasicdataCustomerBase(@ApiIgnore @RequestParam Map<String, Object> basicdataCustomerBase, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<BasicdataCustomerBaseEntity> queryWrapper = Condition.getQueryWrapper(basicdataCustomerBase, BasicdataCustomerBaseEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(BasicdataCustomerBase::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(BasicdataCustomerBaseEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<BasicdataCustomerBaseExcel> list = basicdataCustomerBaseService.exportBasicdataCustomerBase(queryWrapper); |
||||
ExcelUtil.export(response, "基础客户基地表数据" + DateUtil.time(), "基础客户基地表数据表", list, BasicdataCustomerBaseExcel.class); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,150 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.controller; |
||||
|
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import io.swagger.annotations.ApiParam; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import lombok.AllArgsConstructor; |
||||
import javax.validation.Valid; |
||||
|
||||
import org.springblade.core.secure.BladeUser; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springframework.web.bind.annotation.*; |
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerStoreVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerStoreExcel; |
||||
import com.logpm.basicdata.service.IBasicdataCustomerStoreService; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.utils.DateUtil; |
||||
import org.springblade.core.excel.util.ExcelUtil; |
||||
import org.springblade.core.tool.constant.BladeConstant; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
import java.util.Map; |
||||
import java.util.List; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
/** |
||||
* 基础客户商场表 控制器 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/basicdataCustomerStore") |
||||
@Api(value = "基础客户商场表", tags = "基础客户商场表接口") |
||||
public class BasicdataCustomerStoreController extends BladeController { |
||||
|
||||
private final IBasicdataCustomerStoreService basicdataCustomerStoreService; |
||||
|
||||
/** |
||||
* 基础客户商场表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入basicdataCustomerStore") |
||||
public R<BasicdataCustomerStoreEntity> detail(BasicdataCustomerStoreEntity basicdataCustomerStore) { |
||||
BasicdataCustomerStoreEntity detail = basicdataCustomerStoreService.getOne(Condition.getQueryWrapper(basicdataCustomerStore)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 基础客户商场表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入basicdataCustomerStore") |
||||
public R<IPage<BasicdataCustomerStoreEntity>> list(@ApiIgnore @RequestParam Map<String, Object> basicdataCustomerStore, Query query) { |
||||
IPage<BasicdataCustomerStoreEntity> pages = basicdataCustomerStoreService.page(Condition.getPage(query), Condition.getQueryWrapper(basicdataCustomerStore, BasicdataCustomerStoreEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户商场表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入basicdataCustomerStore") |
||||
public R<IPage<BasicdataCustomerStoreVO>> page(BasicdataCustomerStoreVO basicdataCustomerStore, Query query) { |
||||
IPage<BasicdataCustomerStoreVO> pages = basicdataCustomerStoreService.selectBasicdataCustomerStorePage(Condition.getPage(query), basicdataCustomerStore); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户商场表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入basicdataCustomerStore") |
||||
public R save(@Valid @RequestBody BasicdataCustomerStoreEntity basicdataCustomerStore) { |
||||
return R.status(basicdataCustomerStoreService.save(basicdataCustomerStore)); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户商场表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入basicdataCustomerStore") |
||||
public R update(@Valid @RequestBody BasicdataCustomerStoreEntity basicdataCustomerStore) { |
||||
return R.status(basicdataCustomerStoreService.updateById(basicdataCustomerStore)); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户商场表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入basicdataCustomerStore") |
||||
public R submit(@Valid @RequestBody BasicdataCustomerStoreEntity basicdataCustomerStore) { |
||||
return R.status(basicdataCustomerStoreService.saveOrUpdate(basicdataCustomerStore)); |
||||
} |
||||
|
||||
/** |
||||
* 基础客户商场表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(basicdataCustomerStoreService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-basicdataCustomerStore") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入basicdataCustomerStore") |
||||
public void exportBasicdataCustomerStore(@ApiIgnore @RequestParam Map<String, Object> basicdataCustomerStore, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<BasicdataCustomerStoreEntity> queryWrapper = Condition.getQueryWrapper(basicdataCustomerStore, BasicdataCustomerStoreEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(BasicdataCustomerStore::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(BasicdataCustomerStoreEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<BasicdataCustomerStoreExcel> list = basicdataCustomerStoreService.exportBasicdataCustomerStore(queryWrapper); |
||||
ExcelUtil.export(response, "基础客户商场表数据" + DateUtil.time(), "基础客户商场表数据表", list, BasicdataCustomerStoreExcel.class); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.dto; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 基础客户基地表 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataCustomerBaseDTO extends BasicdataCustomerBaseEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.dto; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 基础客户商场表 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataCustomerStoreDTO extends BasicdataCustomerStoreEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,105 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.util.Date; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 基础客户基地表 Excel实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class BasicdataCustomerBaseExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 租户号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("租户号") |
||||
private String tenantId; |
||||
/** |
||||
* 是否已删除 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("是否已删除") |
||||
private Integer isDeleted; |
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留5") |
||||
private String reserve5; |
||||
/** |
||||
* 基地名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("基地名称") |
||||
private String baseName; |
||||
/** |
||||
* 基地编码 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("基地编码") |
||||
private String baseCode; |
||||
/** |
||||
* 客户ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("客户ID") |
||||
private String clientId; |
||||
|
||||
} |
@ -0,0 +1,105 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.util.Date; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 基础客户商场表 Excel实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class BasicdataCustomerStoreExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 租户号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("租户号") |
||||
private String tenantId; |
||||
/** |
||||
* 是否已删除 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("是否已删除") |
||||
private Integer isDeleted; |
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预留5") |
||||
private String reserve5; |
||||
/** |
||||
* 商场名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("商场名称") |
||||
private String storeName; |
||||
/** |
||||
* 商场编码 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("商场编码") |
||||
private String storeCode; |
||||
/** |
||||
* 客户ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("客户ID") |
||||
private String clientId; |
||||
|
||||
} |
@ -0,0 +1,53 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.feign; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.mp.support.BladePage; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import com.logpm.basicdata.service.IBasicdataCustomerBaseService; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
/** |
||||
* 基础客户基地表 Feign实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class BasicdataCustomerBaseClient implements IBasicdataCustomerBaseClient { |
||||
|
||||
private final IBasicdataCustomerBaseService basicdataCustomerBaseService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<BasicdataCustomerBaseEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<BasicdataCustomerBaseEntity> page = basicdataCustomerBaseService.page(Condition.getPage(query)); |
||||
return BladePage.of(page); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,53 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.feign; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.mp.support.BladePage; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import com.logpm.basicdata.service.IBasicdataCustomerStoreService; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
/** |
||||
* 基础客户商场表 Feign实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class BasicdataCustomerStoreClient implements IBasicdataCustomerStoreClient { |
||||
|
||||
private final IBasicdataCustomerStoreService basicdataCustomerStoreService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<BasicdataCustomerStoreEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<BasicdataCustomerStoreEntity> page = basicdataCustomerStoreService.page(Condition.getPage(query)); |
||||
return BladePage.of(page); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.mapper; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerBaseVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerBaseExcel; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 基础客户基地表 Mapper 接口 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
public interface BasicdataCustomerBaseMapper extends BaseMapper<BasicdataCustomerBaseEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param basicdataCustomerBase |
||||
* @return |
||||
*/ |
||||
List<BasicdataCustomerBaseVO> selectBasicdataCustomerBasePage(IPage page, BasicdataCustomerBaseVO basicdataCustomerBase); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<BasicdataCustomerBaseExcel> exportBasicdataCustomerBase(@Param("ew") Wrapper<BasicdataCustomerBaseEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.basicdata.mapper.BasicdataCustomerBaseMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="basicdataCustomerBaseResultMap" type="com.logpm.basicdata.entity.BasicdataCustomerBaseEntity"> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="status" property="status"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="id" property="id"/> |
||||
<result column="reserve1" property="reserve1"/> |
||||
<result column="reserve2" property="reserve2"/> |
||||
<result column="reserve3" property="reserve3"/> |
||||
<result column="reserve4" property="reserve4"/> |
||||
<result column="reserve5" property="reserve5"/> |
||||
<result column="base_name" property="baseName"/> |
||||
<result column="base_code" property="baseCode"/> |
||||
<result column="client_id" property="clientId"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectBasicdataCustomerBasePage" resultMap="basicdataCustomerBaseResultMap"> |
||||
select * from logpm_basicdata_customer_base where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportBasicdataCustomerBase" resultType="com.logpm.basicdata.excel.BasicdataCustomerBaseExcel"> |
||||
SELECT * FROM logpm_basicdata_customer_base ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.mapper; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerStoreVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerStoreExcel; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 基础客户商场表 Mapper 接口 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
public interface BasicdataCustomerStoreMapper extends BaseMapper<BasicdataCustomerStoreEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param basicdataCustomerStore |
||||
* @return |
||||
*/ |
||||
List<BasicdataCustomerStoreVO> selectBasicdataCustomerStorePage(IPage page, BasicdataCustomerStoreVO basicdataCustomerStore); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<BasicdataCustomerStoreExcel> exportBasicdataCustomerStore(@Param("ew") Wrapper<BasicdataCustomerStoreEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.basicdata.mapper.BasicdataCustomerStoreMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="basicdataCustomerStoreResultMap" type="com.logpm.basicdata.entity.BasicdataCustomerStoreEntity"> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="status" property="status"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="id" property="id"/> |
||||
<result column="reserve1" property="reserve1"/> |
||||
<result column="reserve2" property="reserve2"/> |
||||
<result column="reserve3" property="reserve3"/> |
||||
<result column="reserve4" property="reserve4"/> |
||||
<result column="reserve5" property="reserve5"/> |
||||
<result column="store_name" property="storeName"/> |
||||
<result column="store_code" property="storeCode"/> |
||||
<result column="client_id" property="clientId"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectBasicdataCustomerStorePage" resultMap="basicdataCustomerStoreResultMap"> |
||||
select * from logpm_basicdata_customer_store where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportBasicdataCustomerStore" resultType="com.logpm.basicdata.excel.BasicdataCustomerStoreExcel"> |
||||
SELECT * FROM logpm_basicdata_customer_store ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerBaseVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerBaseExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 基础客户基地表 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
public interface IBasicdataCustomerBaseService extends BaseService<BasicdataCustomerBaseEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param basicdataCustomerBase |
||||
* @return |
||||
*/ |
||||
IPage<BasicdataCustomerBaseVO> selectBasicdataCustomerBasePage(IPage<BasicdataCustomerBaseVO> page, BasicdataCustomerBaseVO basicdataCustomerBase); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<BasicdataCustomerBaseExcel> exportBasicdataCustomerBase(Wrapper<BasicdataCustomerBaseEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerStoreVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerStoreExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 基础客户商场表 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
public interface IBasicdataCustomerStoreService extends BaseService<BasicdataCustomerStoreEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param basicdataCustomerStore |
||||
* @return |
||||
*/ |
||||
IPage<BasicdataCustomerStoreVO> selectBasicdataCustomerStorePage(IPage<BasicdataCustomerStoreVO> page, BasicdataCustomerStoreVO basicdataCustomerStore); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<BasicdataCustomerStoreExcel> exportBasicdataCustomerStore(Wrapper<BasicdataCustomerStoreEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.service.impl; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerBaseEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerBaseVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerBaseExcel; |
||||
import com.logpm.basicdata.mapper.BasicdataCustomerBaseMapper; |
||||
import com.logpm.basicdata.service.IBasicdataCustomerBaseService; |
||||
import org.springframework.stereotype.Service; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 基础客户基地表 服务实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Service |
||||
public class BasicdataCustomerBaseServiceImpl extends BaseServiceImpl<BasicdataCustomerBaseMapper, BasicdataCustomerBaseEntity> implements IBasicdataCustomerBaseService { |
||||
|
||||
@Override |
||||
public IPage<BasicdataCustomerBaseVO> selectBasicdataCustomerBasePage(IPage<BasicdataCustomerBaseVO> page, BasicdataCustomerBaseVO basicdataCustomerBase) { |
||||
return page.setRecords(baseMapper.selectBasicdataCustomerBasePage(page, basicdataCustomerBase)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<BasicdataCustomerBaseExcel> exportBasicdataCustomerBase(Wrapper<BasicdataCustomerBaseEntity> queryWrapper) { |
||||
List<BasicdataCustomerBaseExcel> basicdataCustomerBaseList = baseMapper.exportBasicdataCustomerBase(queryWrapper); |
||||
//basicdataCustomerBaseList.forEach(basicdataCustomerBase -> {
|
||||
// basicdataCustomerBase.setTypeName(DictCache.getValue(DictEnum.YES_NO, BasicdataCustomerBase.getType()));
|
||||
//});
|
||||
return basicdataCustomerBaseList; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.service.impl; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataCustomerStoreEntity; |
||||
import com.logpm.basicdata.vo.BasicdataCustomerStoreVO; |
||||
import com.logpm.basicdata.excel.BasicdataCustomerStoreExcel; |
||||
import com.logpm.basicdata.mapper.BasicdataCustomerStoreMapper; |
||||
import com.logpm.basicdata.service.IBasicdataCustomerStoreService; |
||||
import org.springframework.stereotype.Service; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 基础客户商场表 服务实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-09 |
||||
*/ |
||||
@Service |
||||
public class BasicdataCustomerStoreServiceImpl extends BaseServiceImpl<BasicdataCustomerStoreMapper, BasicdataCustomerStoreEntity> implements IBasicdataCustomerStoreService { |
||||
|
||||
@Override |
||||
public IPage<BasicdataCustomerStoreVO> selectBasicdataCustomerStorePage(IPage<BasicdataCustomerStoreVO> page, BasicdataCustomerStoreVO basicdataCustomerStore) { |
||||
return page.setRecords(baseMapper.selectBasicdataCustomerStorePage(page, basicdataCustomerStore)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<BasicdataCustomerStoreExcel> exportBasicdataCustomerStore(Wrapper<BasicdataCustomerStoreEntity> queryWrapper) { |
||||
List<BasicdataCustomerStoreExcel> basicdataCustomerStoreList = baseMapper.exportBasicdataCustomerStore(queryWrapper); |
||||
//basicdataCustomerStoreList.forEach(basicdataCustomerStore -> {
|
||||
// basicdataCustomerStore.setTypeName(DictCache.getValue(DictEnum.YES_NO, BasicdataCustomerStore.getType()));
|
||||
//});
|
||||
return basicdataCustomerStoreList; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue