箱型分类实现
parent
c48de5d3f3
commit
521f1de96f
@ -0,0 +1,110 @@
|
||||
package com.op.mes.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.system.api.domain.SysDictType;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.op.common.log.annotation.Log;
|
||||
import com.op.common.log.enums.BusinessType;
|
||||
import com.op.common.security.annotation.RequiresPermissions;
|
||||
import com.op.mes.domain.MesBox;
|
||||
import com.op.mes.service.IMesBoxService;
|
||||
import com.op.common.core.web.controller.BaseController;
|
||||
import com.op.common.core.web.domain.AjaxResult;
|
||||
import com.op.common.core.utils.poi.ExcelUtil;
|
||||
import com.op.common.core.web.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 箱体类型Controller
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/mesBox")
|
||||
public class MesBoxController extends BaseController {
|
||||
@Autowired
|
||||
private IMesBoxService mesBoxService;
|
||||
|
||||
/**
|
||||
* 查询箱体类型列表
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBox:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(MesBox mesBox) {
|
||||
startPage();
|
||||
List<MesBox> list = mesBoxService.selectMesBoxList(mesBox);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出箱体类型列表
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBox:export")
|
||||
@Log(title = "箱体类型", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, MesBox mesBox) {
|
||||
List<MesBox> list = mesBoxService.selectMesBoxList(mesBox);
|
||||
ExcelUtil<MesBox> util = new ExcelUtil<MesBox>(MesBox. class);
|
||||
util.exportExcel(response, list, "箱体类型数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取箱体类型详细信息
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBox:query")
|
||||
@GetMapping(value = "/{boxId}")
|
||||
public AjaxResult getInfo(@PathVariable("boxId") Long boxId) {
|
||||
return success(mesBoxService.selectMesBoxByBoxId(boxId));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增箱体类型
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBox:add")
|
||||
@Log(title = "箱体类型", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody MesBox mesBox) {
|
||||
return toAjax(mesBoxService.insertMesBox(mesBox));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改箱体类型
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBox:edit")
|
||||
@Log(title = "箱体类型", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody MesBox mesBox) {
|
||||
return toAjax(mesBoxService.updateMesBox(mesBox));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除箱体类型
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBox:remove")
|
||||
@Log(title = "箱体类型", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{boxIds}")
|
||||
public AjaxResult remove(@PathVariable Long[] boxIds) {
|
||||
return toAjax(mesBoxService.deleteMesBoxByBoxIds(boxIds));
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取字典选择框列表
|
||||
*/
|
||||
@GetMapping("/optionSelect")
|
||||
@DS("#header.poolName")
|
||||
public AjaxResult optionSelect() {
|
||||
List<MesBox> boxTypes = mesBoxService.selectDictTypeAll();
|
||||
return success(boxTypes);
|
||||
}
|
||||
}
|
@ -0,0 +1,115 @@
|
||||
package com.op.mes.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.utils.StringUtils;
|
||||
import com.op.system.api.domain.SysDictData;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.op.common.log.annotation.Log;
|
||||
import com.op.common.log.enums.BusinessType;
|
||||
import com.op.common.security.annotation.RequiresPermissions;
|
||||
import com.op.mes.domain.MesBoxDetail;
|
||||
import com.op.mes.service.IMesBoxDetailService;
|
||||
import com.op.common.core.web.controller.BaseController;
|
||||
import com.op.common.core.web.domain.AjaxResult;
|
||||
import com.op.common.core.utils.poi.ExcelUtil;
|
||||
import com.op.common.core.web.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 箱体数据Controller
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/mesBoxDetail")
|
||||
public class MesBoxDetailController extends BaseController {
|
||||
@Autowired
|
||||
private IMesBoxDetailService mesBoxDetailService;
|
||||
|
||||
/**
|
||||
* 查询箱体数据列表
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBoxDetail:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(MesBoxDetail mesBoxDetail) {
|
||||
startPage();
|
||||
List<MesBoxDetail> list = mesBoxDetailService.selectMesBoxDetailList(mesBoxDetail);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出箱体数据列表
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBoxDetail:export")
|
||||
@Log(title = "箱体数据", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, MesBoxDetail mesBoxDetail) {
|
||||
List<MesBoxDetail> list = mesBoxDetailService.selectMesBoxDetailList(mesBoxDetail);
|
||||
ExcelUtil<MesBoxDetail> util = new ExcelUtil<MesBoxDetail>(MesBoxDetail. class);
|
||||
util.exportExcel(response, list, "箱体数据数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取箱体数据详细信息
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBoxDetail:query")
|
||||
@GetMapping(value = "/{boxCode}")
|
||||
public AjaxResult getInfo(@PathVariable("boxCode") Long boxCode) {
|
||||
return success(mesBoxDetailService.selectMesBoxDetailByBoxCode(boxCode));
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据箱体类型查询箱体数据信息
|
||||
*/
|
||||
@GetMapping(value = "/type/{boxType}")
|
||||
@DS("#header.poolName")
|
||||
public AjaxResult dictType(@PathVariable String boxType) {
|
||||
List<SysDictData> data = mesBoxDetailService.selectBoxDataByType(boxType);
|
||||
if (StringUtils.isNull(data)) {
|
||||
data = new ArrayList<SysDictData>();
|
||||
}
|
||||
return success(data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增箱体数据
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBoxDetail:add")
|
||||
@Log(title = "箱体数据", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody MesBoxDetail mesBoxDetail) {
|
||||
return toAjax(mesBoxDetailService.insertMesBoxDetail(mesBoxDetail));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改箱体数据
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBoxDetail:edit")
|
||||
@Log(title = "箱体数据", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody MesBoxDetail mesBoxDetail) {
|
||||
return toAjax(mesBoxDetailService.updateMesBoxDetail(mesBoxDetail));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除箱体数据
|
||||
*/
|
||||
@RequiresPermissions("mes:mesBoxDetail:remove")
|
||||
@Log(title = "箱体数据", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{boxCodes}")
|
||||
public AjaxResult remove(@PathVariable Long[] boxCodes) {
|
||||
return toAjax(mesBoxDetailService.deleteMesBoxDetailByBoxCodes(boxCodes));
|
||||
}
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.op.mes.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.mes.domain.MesBoxDetail;
|
||||
|
||||
/**
|
||||
* 字典数据Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
public interface MesBoxDetailMapper {
|
||||
/**
|
||||
* 查询字典数据
|
||||
*
|
||||
* @param boxCode 字典数据主键
|
||||
* @return 字典数据
|
||||
*/
|
||||
public MesBoxDetail selectMesBoxDetailByBoxCode(Long boxCode);
|
||||
|
||||
/**
|
||||
* 查询字典数据列表
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 字典数据集合
|
||||
*/
|
||||
public List<MesBoxDetail> selectMesBoxDetailList(MesBoxDetail mesBoxDetail);
|
||||
|
||||
/**
|
||||
* 新增字典数据
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertMesBoxDetail(MesBoxDetail mesBoxDetail);
|
||||
|
||||
/**
|
||||
* 修改字典数据
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateMesBoxDetail(MesBoxDetail mesBoxDetail);
|
||||
|
||||
/**
|
||||
* 删除字典数据
|
||||
*
|
||||
* @param boxCode 字典数据主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxDetailByBoxCode(Long boxCode);
|
||||
|
||||
/**
|
||||
* 批量删除字典数据
|
||||
*
|
||||
* @param boxCodes 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxDetailByBoxCodes(Long[] boxCodes);
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
package com.op.mes.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.mes.domain.MesBox;
|
||||
|
||||
/**
|
||||
* 箱体类型Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
public interface MesBoxMapper {
|
||||
/**
|
||||
* 查询箱体类型
|
||||
*
|
||||
* @param boxId 箱体类型主键
|
||||
* @return 箱体类型
|
||||
*/
|
||||
public MesBox selectMesBoxByBoxId(Long boxId);
|
||||
|
||||
/**
|
||||
* 查询箱体类型列表
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 箱体类型集合
|
||||
*/
|
||||
public List<MesBox> selectMesBoxList(MesBox mesBox);
|
||||
|
||||
/**
|
||||
* 新增箱体类型
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertMesBox(MesBox mesBox);
|
||||
|
||||
/**
|
||||
* 修改箱体类型
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateMesBox(MesBox mesBox);
|
||||
|
||||
/**
|
||||
* 删除箱体类型
|
||||
*
|
||||
* @param boxId 箱体类型主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxByBoxId(Long boxId);
|
||||
|
||||
/**
|
||||
* 批量删除箱体类型
|
||||
*
|
||||
* @param boxIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxByBoxIds(Long[] boxIds);
|
||||
|
||||
List<MesBox> selectDictTypeAll();
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
package com.op.mes.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.mes.domain.MesBoxDetail;
|
||||
import com.op.system.api.domain.SysDictData;
|
||||
|
||||
/**
|
||||
* 字典数据Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
public interface IMesBoxDetailService {
|
||||
/**
|
||||
* 查询字典数据
|
||||
*
|
||||
* @param boxCode 字典数据主键
|
||||
* @return 字典数据
|
||||
*/
|
||||
public MesBoxDetail selectMesBoxDetailByBoxCode(Long boxCode);
|
||||
|
||||
/**
|
||||
* 查询字典数据列表
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 字典数据集合
|
||||
*/
|
||||
public List<MesBoxDetail> selectMesBoxDetailList(MesBoxDetail mesBoxDetail);
|
||||
|
||||
/**
|
||||
* 新增字典数据
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertMesBoxDetail(MesBoxDetail mesBoxDetail);
|
||||
|
||||
/**
|
||||
* 修改字典数据
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateMesBoxDetail(MesBoxDetail mesBoxDetail);
|
||||
|
||||
/**
|
||||
* 批量删除字典数据
|
||||
*
|
||||
* @param boxCodes 需要删除的字典数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxDetailByBoxCodes(Long[] boxCodes);
|
||||
|
||||
/**
|
||||
* 删除字典数据信息
|
||||
*
|
||||
* @param boxCode 字典数据主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxDetailByBoxCode(Long boxCode);
|
||||
|
||||
List<SysDictData> selectBoxDataByType(String boxType);
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
package com.op.mes.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.mes.domain.MesBox;
|
||||
|
||||
/**
|
||||
* 箱体类型Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
public interface IMesBoxService {
|
||||
/**
|
||||
* 查询箱体类型
|
||||
*
|
||||
* @param boxId 箱体类型主键
|
||||
* @return 箱体类型
|
||||
*/
|
||||
public MesBox selectMesBoxByBoxId(Long boxId);
|
||||
|
||||
/**
|
||||
* 查询箱体类型列表
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 箱体类型集合
|
||||
*/
|
||||
public List<MesBox> selectMesBoxList(MesBox mesBox);
|
||||
|
||||
/**
|
||||
* 新增箱体类型
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertMesBox(MesBox mesBox);
|
||||
|
||||
/**
|
||||
* 修改箱体类型
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateMesBox(MesBox mesBox);
|
||||
|
||||
/**
|
||||
* 批量删除箱体类型
|
||||
*
|
||||
* @param boxIds 需要删除的箱体类型主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxByBoxIds(Long[] boxIds);
|
||||
|
||||
/**
|
||||
* 删除箱体类型信息
|
||||
*
|
||||
* @param boxId 箱体类型主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteMesBoxByBoxId(Long boxId);
|
||||
|
||||
List<MesBox> selectDictTypeAll();
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.op.mes.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.utils.DateUtils;
|
||||
import com.op.common.security.utils.SecurityUtils;
|
||||
import com.op.system.api.domain.SysDictData;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.op.mes.mapper.MesBoxDetailMapper;
|
||||
import com.op.mes.domain.MesBoxDetail;
|
||||
import com.op.mes.service.IMesBoxDetailService;
|
||||
|
||||
/**
|
||||
* 字典数据Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
@Service
|
||||
public class MesBoxDetailServiceImpl implements IMesBoxDetailService {
|
||||
@Autowired
|
||||
private MesBoxDetailMapper mesBoxDetailMapper;
|
||||
|
||||
/**
|
||||
* 查询字典数据
|
||||
*
|
||||
* @param boxCode 字典数据主键
|
||||
* @return 字典数据
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public MesBoxDetail selectMesBoxDetailByBoxCode(Long boxCode) {
|
||||
return mesBoxDetailMapper.selectMesBoxDetailByBoxCode(boxCode);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询字典数据列表
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 字典数据
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<MesBoxDetail> selectMesBoxDetailList(MesBoxDetail mesBoxDetail) {
|
||||
return mesBoxDetailMapper.selectMesBoxDetailList(mesBoxDetail);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增字典数据
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertMesBoxDetail(MesBoxDetail mesBoxDetail) {
|
||||
mesBoxDetail.setCreateBy(SecurityUtils.getUsername());
|
||||
mesBoxDetail.setCreateTime(DateUtils.getNowDate());
|
||||
return mesBoxDetailMapper.insertMesBoxDetail(mesBoxDetail);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改字典数据
|
||||
*
|
||||
* @param mesBoxDetail 字典数据
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateMesBoxDetail(MesBoxDetail mesBoxDetail) {
|
||||
mesBoxDetail.setUpdateBy(SecurityUtils.getUsername());
|
||||
mesBoxDetail.setUpdateTime(DateUtils.getNowDate());
|
||||
return mesBoxDetailMapper.updateMesBoxDetail(mesBoxDetail);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除字典数据
|
||||
*
|
||||
* @param boxCodes 需要删除的字典数据主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteMesBoxDetailByBoxCodes(Long[] boxCodes) {
|
||||
return mesBoxDetailMapper.deleteMesBoxDetailByBoxCodes(boxCodes);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除字典数据信息
|
||||
*
|
||||
* @param boxCode 字典数据主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteMesBoxDetailByBoxCode(Long boxCode) {
|
||||
return mesBoxDetailMapper.deleteMesBoxDetailByBoxCode(boxCode);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<SysDictData> selectBoxDataByType(String boxType) {
|
||||
return null;
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.op.mes.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.utils.DateUtils;
|
||||
import com.op.common.security.utils.SecurityUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.op.mes.mapper.MesBoxMapper;
|
||||
import com.op.mes.domain.MesBox;
|
||||
import com.op.mes.service.IMesBoxService;
|
||||
|
||||
/**
|
||||
* 箱体类型Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
@Service
|
||||
public class MesBoxServiceImpl implements IMesBoxService {
|
||||
@Autowired
|
||||
private MesBoxMapper mesBoxMapper;
|
||||
|
||||
/**
|
||||
* 查询箱体类型
|
||||
*
|
||||
* @param boxId 箱体类型主键
|
||||
* @return 箱体类型
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public MesBox selectMesBoxByBoxId(Long boxId) {
|
||||
return mesBoxMapper.selectMesBoxByBoxId(boxId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询箱体类型列表
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 箱体类型
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<MesBox> selectMesBoxList(MesBox mesBox) {
|
||||
return mesBoxMapper.selectMesBoxList(mesBox);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增箱体类型
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertMesBox(MesBox mesBox) {
|
||||
mesBox.setUpdateBy(SecurityUtils.getUsername());
|
||||
mesBox.setCreateTime(DateUtils.getNowDate());
|
||||
return mesBoxMapper.insertMesBox(mesBox);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改箱体类型
|
||||
*
|
||||
* @param mesBox 箱体类型
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateMesBox(MesBox mesBox) {
|
||||
mesBox.setUpdateBy(SecurityUtils.getUsername());
|
||||
mesBox.setUpdateTime(DateUtils.getNowDate());
|
||||
return mesBoxMapper.updateMesBox(mesBox);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除箱体类型
|
||||
*
|
||||
* @param boxIds 需要删除的箱体类型主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteMesBoxByBoxIds(Long[] boxIds) {
|
||||
return mesBoxMapper.deleteMesBoxByBoxIds(boxIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除箱体类型信息
|
||||
*
|
||||
* @param boxId 箱体类型主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteMesBoxByBoxId(Long boxId) {
|
||||
return mesBoxMapper.deleteMesBoxByBoxId(boxId);
|
||||
}
|
||||
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<MesBox> selectDictTypeAll() {
|
||||
return mesBoxMapper.selectDictTypeAll();
|
||||
}
|
||||
}
|
@ -0,0 +1,196 @@
|
||||
<?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.op.mes.mapper.MesBoxDetailMapper">
|
||||
|
||||
<resultMap type="MesBoxDetail" id="MesBoxDetailResult">
|
||||
<result property="boxCode" column="box_code"/>
|
||||
<result property="boxSort" column="box_sort"/>
|
||||
<result property="boxLabel" column="box_label"/>
|
||||
<result property="boxKey" column="box_key"/>
|
||||
<result property="boxValue" column="box_value"/>
|
||||
<result property="boxType" column="box_type"/>
|
||||
<result property="cssClass" column="css_class"/>
|
||||
<result property="listClass" column="list_class"/>
|
||||
<result property="isDefault" column="is_default"/>
|
||||
<result property="status" column="status"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="remark" column="remark"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectMesBoxDetailVo">
|
||||
select box_code, box_sort, box_label, box_key, box_value, box_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark from mes_box_detail
|
||||
</sql>
|
||||
|
||||
<select id="selectMesBoxDetailList" parameterType="MesBoxDetail" resultMap="MesBoxDetailResult">
|
||||
<include refid="selectMesBoxDetailVo"/>
|
||||
<where>
|
||||
<if test="boxSort != null ">
|
||||
and box_sort = #{boxSort}
|
||||
</if>
|
||||
<if test="boxLabel != null and boxLabel != ''">
|
||||
and box_label = #{boxLabel}
|
||||
</if>
|
||||
<if test="boxKey != null and boxKey != ''">
|
||||
and box_key = #{boxKey}
|
||||
</if>
|
||||
<if test="boxValue != null and boxValue != ''">
|
||||
and box_value = #{boxValue}
|
||||
</if>
|
||||
<if test="boxType != null and boxType != ''">
|
||||
and box_type = #{boxType}
|
||||
</if>
|
||||
<if test="cssClass != null and cssClass != ''">
|
||||
and css_class = #{cssClass}
|
||||
</if>
|
||||
<if test="listClass != null and listClass != ''">
|
||||
and list_class = #{listClass}
|
||||
</if>
|
||||
<if test="isDefault != null and isDefault != ''">
|
||||
and is_default = #{isDefault}
|
||||
</if>
|
||||
<if test="status != null and status != ''">
|
||||
and status = #{status}
|
||||
</if>
|
||||
</where>
|
||||
order by box_sort
|
||||
</select>
|
||||
|
||||
<select id="selectMesBoxDetailByBoxCode" parameterType="Long"
|
||||
resultMap="MesBoxDetailResult">
|
||||
<include refid="selectMesBoxDetailVo"/>
|
||||
where box_code = #{boxCode}
|
||||
</select>
|
||||
|
||||
<insert id="insertMesBoxDetail" parameterType="MesBoxDetail">
|
||||
insert into mes_box_detail
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="boxCode != null">box_code,
|
||||
</if>
|
||||
<if test="boxSort != null">box_sort,
|
||||
</if>
|
||||
<if test="boxLabel != null">box_label,
|
||||
</if>
|
||||
<if test="boxKey != null">box_key,
|
||||
</if>
|
||||
<if test="boxValue != null">box_value,
|
||||
</if>
|
||||
<if test="boxType != null">box_type,
|
||||
</if>
|
||||
<if test="cssClass != null">css_class,
|
||||
</if>
|
||||
<if test="listClass != null">list_class,
|
||||
</if>
|
||||
<if test="isDefault != null">is_default,
|
||||
</if>
|
||||
<if test="status != null">status,
|
||||
</if>
|
||||
<if test="createBy != null">create_by,
|
||||
</if>
|
||||
<if test="createTime != null">create_time,
|
||||
</if>
|
||||
<if test="updateBy != null">update_by,
|
||||
</if>
|
||||
<if test="updateTime != null">update_time,
|
||||
</if>
|
||||
<if test="remark != null">remark,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="boxCode != null">#{boxCode},
|
||||
</if>
|
||||
<if test="boxSort != null">#{boxSort},
|
||||
</if>
|
||||
<if test="boxLabel != null">#{boxLabel},
|
||||
</if>
|
||||
<if test="boxKey != null">#{boxKey},
|
||||
</if>
|
||||
<if test="boxValue != null">#{boxValue},
|
||||
</if>
|
||||
<if test="boxType != null">#{boxType},
|
||||
</if>
|
||||
<if test="cssClass != null">#{cssClass},
|
||||
</if>
|
||||
<if test="listClass != null">#{listClass},
|
||||
</if>
|
||||
<if test="isDefault != null">#{isDefault},
|
||||
</if>
|
||||
<if test="status != null">#{status},
|
||||
</if>
|
||||
<if test="createBy != null">#{createBy},
|
||||
</if>
|
||||
<if test="createTime != null">#{createTime},
|
||||
</if>
|
||||
<if test="updateBy != null">#{updateBy},
|
||||
</if>
|
||||
<if test="updateTime != null">#{updateTime},
|
||||
</if>
|
||||
<if test="remark != null">#{remark},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateMesBoxDetail" parameterType="MesBoxDetail">
|
||||
update mes_box_detail
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="boxSort != null">box_sort =
|
||||
#{boxSort},
|
||||
</if>
|
||||
<if test="boxLabel != null">box_label =
|
||||
#{boxLabel},
|
||||
</if>
|
||||
<if test="boxKey != null">box_key =
|
||||
#{boxKey},
|
||||
</if>
|
||||
<if test="boxValue != null">box_value =
|
||||
#{boxValue},
|
||||
</if>
|
||||
<if test="boxType != null">box_type =
|
||||
#{boxType},
|
||||
</if>
|
||||
<if test="cssClass != null">css_class =
|
||||
#{cssClass},
|
||||
</if>
|
||||
<if test="listClass != null">list_class =
|
||||
#{listClass},
|
||||
</if>
|
||||
<if test="isDefault != null">is_default =
|
||||
#{isDefault},
|
||||
</if>
|
||||
<if test="status != null">status =
|
||||
#{status},
|
||||
</if>
|
||||
<if test="createBy != null">create_by =
|
||||
#{createBy},
|
||||
</if>
|
||||
<if test="createTime != null">create_time =
|
||||
#{createTime},
|
||||
</if>
|
||||
<if test="updateBy != null">update_by =
|
||||
#{updateBy},
|
||||
</if>
|
||||
<if test="updateTime != null">update_time =
|
||||
#{updateTime},
|
||||
</if>
|
||||
<if test="remark != null">remark =
|
||||
#{remark},
|
||||
</if>
|
||||
</trim>
|
||||
where box_code = #{boxCode}
|
||||
</update>
|
||||
|
||||
<delete id="deleteMesBoxDetailByBoxCode" parameterType="Long">
|
||||
delete from mes_box_detail where box_code = #{boxCode}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteMesBoxDetailByBoxCodes" parameterType="String">
|
||||
delete from mes_box_detail where box_code in
|
||||
<foreach item="boxCode" collection="array" open="(" separator="," close=")">
|
||||
#{boxCode}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,133 @@
|
||||
<?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.op.mes.mapper.MesBoxMapper">
|
||||
|
||||
<resultMap type="MesBox" id="MesBoxResult">
|
||||
<result property="boxId" column="box_id"/>
|
||||
<result property="boxName" column="box_name"/>
|
||||
<result property="boxType" column="box_type"/>
|
||||
<result property="status" column="status"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="remark" column="remark"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectMesBoxVo">
|
||||
select box_id, box_name, box_type, status, create_by, create_time, update_by, update_time, remark from mes_box
|
||||
</sql>
|
||||
|
||||
<select id="selectMesBoxList" parameterType="MesBox" resultMap="MesBoxResult">
|
||||
<include refid="selectMesBoxVo"/>
|
||||
<where>
|
||||
<if test="boxName != null and boxName != ''">
|
||||
and box_name like concat('%', #{boxName}, '%')
|
||||
</if>
|
||||
<if test="boxType != null and boxType != ''">
|
||||
and box_type = #{boxType}
|
||||
</if>
|
||||
<if test="status != null and status != ''">
|
||||
and status = #{status}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectMesBoxByBoxId" parameterType="Long"
|
||||
resultMap="MesBoxResult">
|
||||
<include refid="selectMesBoxVo"/>
|
||||
where box_id = #{boxId}
|
||||
</select>
|
||||
|
||||
<insert id="insertMesBox" parameterType="MesBox">
|
||||
insert into mes_box
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="boxId != null">box_id,
|
||||
</if>
|
||||
<if test="boxName != null">box_name,
|
||||
</if>
|
||||
<if test="boxType != null">box_type,
|
||||
</if>
|
||||
<if test="status != null">status,
|
||||
</if>
|
||||
<if test="createBy != null">create_by,
|
||||
</if>
|
||||
<if test="createTime != null">create_time,
|
||||
</if>
|
||||
<if test="updateBy != null">update_by,
|
||||
</if>
|
||||
<if test="updateTime != null">update_time,
|
||||
</if>
|
||||
<if test="remark != null">remark,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="boxId != null">#{boxId},
|
||||
</if>
|
||||
<if test="boxName != null">#{boxName},
|
||||
</if>
|
||||
<if test="boxType != null">#{boxType},
|
||||
</if>
|
||||
<if test="status != null">#{status},
|
||||
</if>
|
||||
<if test="createBy != null">#{createBy},
|
||||
</if>
|
||||
<if test="createTime != null">#{createTime},
|
||||
</if>
|
||||
<if test="updateBy != null">#{updateBy},
|
||||
</if>
|
||||
<if test="updateTime != null">#{updateTime},
|
||||
</if>
|
||||
<if test="remark != null">#{remark},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateMesBox" parameterType="MesBox">
|
||||
update mes_box
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="boxName != null">box_name =
|
||||
#{boxName},
|
||||
</if>
|
||||
<if test="boxType != null">box_type =
|
||||
#{boxType},
|
||||
</if>
|
||||
<if test="status != null">status =
|
||||
#{status},
|
||||
</if>
|
||||
<if test="createBy != null">create_by =
|
||||
#{createBy},
|
||||
</if>
|
||||
<if test="createTime != null">create_time =
|
||||
#{createTime},
|
||||
</if>
|
||||
<if test="updateBy != null">update_by =
|
||||
#{updateBy},
|
||||
</if>
|
||||
<if test="updateTime != null">update_time =
|
||||
#{updateTime},
|
||||
</if>
|
||||
<if test="remark != null">remark =
|
||||
#{remark},
|
||||
</if>
|
||||
</trim>
|
||||
where box_id = #{boxId}
|
||||
</update>
|
||||
|
||||
<select id="selectDictTypeAll" resultMap="MesBoxResult">
|
||||
<include refid="selectMesBoxVo"/>
|
||||
</select>
|
||||
|
||||
<delete id="deleteMesBoxByBoxId" parameterType="Long">
|
||||
delete from mes_box where box_id = #{boxId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteMesBoxByBoxIds" parameterType="String">
|
||||
delete from mes_box where box_id in
|
||||
<foreach item="boxId" collection="array" open="(" separator="," close=")">
|
||||
#{boxId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
Loading…
Reference in New Issue