diff --git a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/controller/InventoryChildController.java b/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/controller/InventoryChildController.java deleted file mode 100644 index c50dfa5..0000000 --- a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/controller/InventoryChildController.java +++ /dev/null @@ -1,148 +0,0 @@ -package org.jeecg.modules.wms.inventory.inventoryChild.controller; - -import java.util.Arrays; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.jeecg.common.api.vo.Result; -import org.jeecg.common.aspect.annotation.AutoLog; -import org.jeecg.common.system.base.controller.JeecgController; -import org.jeecg.common.system.query.QueryGenerator; -import org.jeecg.modules.wms.inventory.inventoryChild.entity.InventoryChild; -import org.jeecg.modules.wms.inventory.inventoryChild.service.IInventoryChildService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.*; -import org.springframework.web.servlet.ModelAndView; - -import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; -import com.baomidou.mybatisplus.core.metadata.IPage; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.extern.slf4j.Slf4j; - -/** - * @Description: 库存明细 - * @Author: jeecg-boot - * @Date: 2023-03-24 - * @Version: V1.0 - */ -@Api(tags = "库存明细") -@RestController -@RequestMapping("/inventory/inventoryChild") -@Slf4j -public class InventoryChildController extends JeecgController<InventoryChild, IInventoryChildService> { - @Autowired - private IInventoryChildService inventoryChildService; - - /** - * 分页列表查询 - * @param inventoryChild - * @param pageNo - * @param pageSize - * @param req - * @return - */ - // @AutoLog(value = "库存明细-分页列表查询") - @ApiOperation(value = "库存明细-分页列表查询", notes = "库存明细-分页列表查询") - @GetMapping(value = "/list") - public Result<IPage<InventoryChild>> queryPageList(InventoryChild inventoryChild, @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, - @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, HttpServletRequest req) { - QueryWrapper<InventoryChild> queryWrapper = QueryGenerator.initQueryWrapper(inventoryChild, req.getParameterMap()); - Page<InventoryChild> page = new Page<InventoryChild>(pageNo, pageSize); - IPage<InventoryChild> pageList = inventoryChildService.page(page, queryWrapper); - return Result.OK(pageList); - } - - /** - * 添加 - * @param inventoryChild - * @return - */ - @AutoLog(value = "库存明细-添加") - @ApiOperation(value = "库存明细-添加", notes = "库存明细-添加") - @PostMapping(value = "/add") - public Result<String> add(@RequestBody InventoryChild inventoryChild) { - inventoryChildService.save(inventoryChild); - return Result.OK("添加成功!"); - } - - /** - * 编辑 - * @param inventoryChild - * @return - */ - @AutoLog(value = "库存明细-编辑") - @ApiOperation(value = "库存明细-编辑", notes = "库存明细-编辑") - @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST}) - public Result<String> edit(@RequestBody InventoryChild inventoryChild) { - inventoryChildService.updateById(inventoryChild); - return Result.OK("编辑成功!"); - } - - /** - * 通过id删除 - * @param id - * @return - */ - @AutoLog(value = "库存明细-通过id删除") - @ApiOperation(value = "库存明细-通过id删除", notes = "库存明细-通过id删除") - @DeleteMapping(value = "/delete") - public Result<String> delete(@RequestParam(name = "id", required = true) String id) { - inventoryChildService.removeById(id); - return Result.OK("删除成功!"); - } - - /** - * 批量删除 - * @param ids - * @return - */ - @AutoLog(value = "库存明细-批量删除") - @ApiOperation(value = "库存明细-批量删除", notes = "库存明细-批量删除") - @DeleteMapping(value = "/deleteBatch") - public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) { - this.inventoryChildService.removeByIds(Arrays.asList(ids.split(","))); - return Result.OK("批量删除成功!"); - } - - /** - * 通过id查询 - * @param id - * @return - */ - // @AutoLog(value = "库存明细-通过id查询") - @ApiOperation(value = "库存明细-通过id查询", notes = "库存明细-通过id查询") - @GetMapping(value = "/queryById") - public Result<InventoryChild> queryById(@RequestParam(name = "id", required = true) String id) { - InventoryChild inventoryChild = inventoryChildService.getById(id); - if (inventoryChild == null) { - return Result.error("未找到对应数据"); - } - return Result.OK(inventoryChild); - } - - /** - * 导出excel - * @param request - * @param inventoryChild - */ - @RequestMapping(value = "/exportXls") - public ModelAndView exportXls(HttpServletRequest request, InventoryChild inventoryChild) { - return super.exportXls(request, inventoryChild, InventoryChild.class, "库存明细"); - } - - /** - * 通过excel导入数据 - * @param request - * @param response - * @return - */ - @RequestMapping(value = "/importExcel", method = RequestMethod.POST) - public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { - return super.importExcel(request, response, InventoryChild.class); - } - -} diff --git a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/entity/InventoryChild.java b/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/entity/InventoryChild.java deleted file mode 100644 index f2a48e6..0000000 --- a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/entity/InventoryChild.java +++ /dev/null @@ -1,107 +0,0 @@ -package org.jeecg.modules.wms.inventory.inventoryChild.entity; - -import java.io.Serializable; -import java.util.Date; - -import org.jeecg.common.aspect.annotation.Dict; -import org.jeecgframework.poi.excel.annotation.Excel; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; - -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; -import lombok.experimental.Accessors; - -/** - * @Description: 库存明细 - * @Author: jeecg-boot - * @Date: 2023-03-24 - * @Version: V1.0 - */ -@Data -@TableName("inventory_child") -@Accessors(chain = true) -@EqualsAndHashCode(callSuper = false) -@ApiModel(value = "inventory_child对象", description = "库存明细") -public class InventoryChild implements Serializable { - private static final long serialVersionUID = 1L; - - /** 主键 */ - @TableId(type = IdType.ASSIGN_ID) - @ApiModelProperty(value = "主键") - private String id; - /** 库存头ID */ - @Excel(name = "库存头ID", width = 15) - @ApiModelProperty(value = "库存头ID") - private Integer inventoryHeaderId; - /** 仓库编码 */ - @Excel(name = "仓库编码", width = 15) - @ApiModelProperty(value = "仓库编码") - private String warehouseCode; - /** 货主 */ - @Excel(name = "货主", width = 15) - @ApiModelProperty(value = "货主") - private String companyCode; - /** 库区 */ - @Excel(name = "库区", width = 15) - @ApiModelProperty(value = "库区") - private String zoneCode; - /** 容器状态 */ - @Excel(name = "容器状态", width = 15, dicCode = "container_status") - @Dict(dicCode = "container_status") - @ApiModelProperty(value = "容器状态") - private String containerStatus; - /** 容器编码 */ - @Excel(name = "容器编码", width = 15) - @ApiModelProperty(value = "容器编码") - private String containerCode; - /** 库位编码 */ - @Excel(name = "库位编码", width = 15) - @ApiModelProperty(value = "库位编码") - private String locationCode; - /** 物料编码 */ - @Excel(name = "物料编码", width = 15) - @ApiModelProperty(value = "物料编码") - private String materialCode; - /** 物料名称 */ - @Excel(name = "物料名称", width = 15) - @ApiModelProperty(value = "物料名称") - private String materialName; - /** 物料规格 */ - @Excel(name = "物料规格", width = 15) - @ApiModelProperty(value = "物料规格") - private String materialSpec; - /** 物料单位 */ - @Excel(name = "物料单位", width = 15) - @ApiModelProperty(value = "物料单位") - private String materialUnit; - /** 库存状态 */ - @Excel(name = "库存状态", width = 15, dicCode = "inventory_status") - @Dict(dicCode = "inventory_status") - @ApiModelProperty(value = "库存状态") - private String inventoryStatus; - /** 库龄(天) */ - @Excel(name = "库龄(天)", width = 15) - @ApiModelProperty(value = "库龄(天)") - private Integer inventoryAge; - /** 序列号 */ - @Excel(name = "序列号", width = 15) - @ApiModelProperty(value = "序列号") - private String sn; - /** 创建人 */ - @ApiModelProperty(value = "创建人") - private String createBy; - /** 创建日期 */ - @ApiModelProperty(value = "创建日期") - private Date createTime; - /** 更新人 */ - @ApiModelProperty(value = "更新人") - private String updateBy; - /** 更新日期 */ - @ApiModelProperty(value = "更新日期") - private Date updateTime; -} diff --git a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/mapper/InventoryChildMapper.java b/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/mapper/InventoryChildMapper.java deleted file mode 100644 index bb9990d..0000000 --- a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/mapper/InventoryChildMapper.java +++ /dev/null @@ -1,15 +0,0 @@ -package org.jeecg.modules.wms.inventory.inventoryChild.mapper; - -import org.jeecg.modules.wms.inventory.inventoryChild.entity.InventoryChild; - -import com.baomidou.mybatisplus.core.mapper.BaseMapper; - -/** - * @Description: 库存明细 - * @Author: jeecg-boot - * @Date: 2023-03-24 - * @Version: V1.0 - */ -public interface InventoryChildMapper extends BaseMapper<InventoryChild> { - -} diff --git a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/mapper/xml/InventoryChildMapper.xml b/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/mapper/xml/InventoryChildMapper.xml deleted file mode 100644 index 9e78360..0000000 --- a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/mapper/xml/InventoryChildMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?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="org.jeecg.modules.wms.inventory.inventoryChild.mapper.InventoryChildMapper"> - -</mapper> diff --git a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/service/IInventoryChildService.java b/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/service/IInventoryChildService.java deleted file mode 100644 index 7469820..0000000 --- a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/service/IInventoryChildService.java +++ /dev/null @@ -1,15 +0,0 @@ -package org.jeecg.modules.wms.inventory.inventoryChild.service; - -import org.jeecg.modules.wms.inventory.inventoryChild.entity.InventoryChild; - -import com.baomidou.mybatisplus.extension.service.IService; - -/** - * @Description: 库存明细 - * @Author: jeecg-boot - * @Date: 2023-03-24 - * @Version: V1.0 - */ -public interface IInventoryChildService extends IService<InventoryChild> { - -} diff --git a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/service/impl/InventoryChildServiceImpl.java b/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/service/impl/InventoryChildServiceImpl.java deleted file mode 100644 index e9d506f..0000000 --- a/huaheng-wms-core/src/main/java/org/jeecg/modules/wms/inventory/inventoryChild/service/impl/InventoryChildServiceImpl.java +++ /dev/null @@ -1,19 +0,0 @@ -package org.jeecg.modules.wms.inventory.inventoryChild.service.impl; - -import org.jeecg.modules.wms.inventory.inventoryChild.entity.InventoryChild; -import org.jeecg.modules.wms.inventory.inventoryChild.mapper.InventoryChildMapper; -import org.jeecg.modules.wms.inventory.inventoryChild.service.IInventoryChildService; -import org.springframework.stereotype.Service; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; - -/** - * @Description: 库存明细 - * @Author: jeecg-boot - * @Date: 2023-03-24 - * @Version: V1.0 - */ -@Service -public class InventoryChildServiceImpl extends ServiceImpl<InventoryChildMapper, InventoryChild> implements IInventoryChildService { - -}