diff --git a/ruoyi-admin/src/main/java/com/ruoyi/ck/controller/BcpBomController.java b/ruoyi-admin/src/main/java/com/ruoyi/ck/controller/BcpBomController.java deleted file mode 100644 index e7bbc412..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/ck/controller/BcpBomController.java +++ /dev/null @@ -1,143 +0,0 @@ -package com.ruoyi.ck.controller; - -import com.ruoyi.ck.domain.BcpBom; -import com.ruoyi.ck.service.IBcpBomService; -import com.ruoyi.common.annotation.Log; -import com.ruoyi.common.core.controller.BaseController; -import com.ruoyi.common.core.domain.AjaxResult; -import com.ruoyi.common.core.page.TableDataInfo; -import com.ruoyi.common.enums.BusinessType; -import com.ruoyi.common.utils.poi.ExcelUtil; -import org.apache.shiro.authz.annotation.RequiresPermissions; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Controller; -import org.springframework.ui.ModelMap; -import org.springframework.web.bind.annotation.*; - -import java.util.List; - -/** - * 半成品bomController - * - * @author ruoyi - * @date 2021-09-25 - */ -@Controller -@RequestMapping("/ck/bcpbom") -public class BcpBomController extends BaseController -{ - private String prefix = "ck/bcpbom"; - - @Autowired - private IBcpBomService bcpBomService; - - @RequiresPermissions("ck:bcpbom:view") - @GetMapping() - public String bcpbom() - { - return prefix + "/bcpbom"; - } - - /** - * 查询半成品bom列表 - */ - @RequiresPermissions("ck:bcpbom:list") - @PostMapping("/list") - @ResponseBody - public TableDataInfo list(BcpBom bcpBom) - { - startPage(); - List list = bcpBomService.selectBomGroupByBcpCode(bcpBom); - return getDataTable(list); - } - - - /** - * 查询对应成品的原料清单列表 - */ - @RequiresPermissions("ck:bom:bcpyllist") - @PostMapping("/bcpyllist") - @ResponseBody - public TableDataInfo bcpylList(BcpBom bcpBom) - { - startPage(); - List list = bcpBomService.selectBcpBomList(bcpBom); - return getDataTable(list); - } - - /** - * 导出半成品bom列表 - */ - @RequiresPermissions("ck:bcpbom:export") - @Log(title = "半成品bom", businessType = BusinessType.EXPORT) - @PostMapping("/export") - @ResponseBody - public AjaxResult export(BcpBom bcpBom) - { - List list = bcpBomService.selectBcpBomList(bcpBom); - ExcelUtil util = new ExcelUtil(BcpBom.class); - return util.exportExcel(list, "半成品bom数据"); - } - - /** - * 新增半成品bom - */ - @GetMapping("/add") - public String add() - { - return prefix + "/add"; - } - - /** - * 新增保存半成品bom - */ - @RequiresPermissions("ck:bcpbom:add") - @Log(title = "半成品bom", businessType = BusinessType.INSERT) - @PostMapping("/add") - @ResponseBody - public AjaxResult addSave(BcpBom bcpBom) - { - return toAjax(bcpBomService.insertBcpBom(bcpBom)); - } - - /** - * 修改半成品bom - */ - @GetMapping("/edit/{bcpCode}") - public String edit(@PathVariable("bcpCode") String bcpCode, ModelMap mmap) - { - BcpBom bcpBom=new BcpBom(); - bcpBom.setBcpCode(bcpCode); - List bcpBom1 = bcpBomService.selectBcpBomList(bcpBom); - bcpBom= bcpBom1.get(0); - mmap.put("bcpBom", bcpBom); - return prefix + "/edit"; - } - - - - - /** - * 修改保存半成品bom - */ - @RequiresPermissions("ck:bcpbom:edit") - @Log(title = "半成品bom", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - @ResponseBody - public AjaxResult editSave(BcpBom bcpBom) - { - return toAjax(bcpBomService.updateBcpBom(bcpBom)); - } - - /** - * 删除半成品bom - */ - @RequiresPermissions("ck:bcpbom:remove") - @Log(title = "半成品bom", businessType = BusinessType.DELETE) - @PostMapping( "/remove") - @ResponseBody - public AjaxResult remove(String ids) - { - return toAjax(bcpBomService.deleteBcpBomByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/ck/domain/BcpBom.java b/ruoyi-admin/src/main/java/com/ruoyi/ck/domain/BcpBom.java deleted file mode 100644 index 4c74129e..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/ck/domain/BcpBom.java +++ /dev/null @@ -1,422 +0,0 @@ -package com.ruoyi.ck.domain; - -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.core.domain.BaseEntity; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -import java.math.BigDecimal; -import java.util.Date; - -/** - * 半成品bom对象 bcp_bom - * - * @author ruoyi - * @date 2021-09-25 - */ -public class BcpBom extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 半成品代码 */ - @Excel(name = "半成品代码") - private String bcpCode; - - /** 名称 */ - @Excel(name = "名称") - private String bcpName; - - /** 规格型号 */ - @Excel(name = "规格型号") - private String bcpType; - - /** */ - @Excel(name = "") - private String bcpMachineNo; - - /** 单位 */ - @Excel(name = "单位") - private String bcpDw; - - /** */ - private String wlCode; - - /** */ - private String Itemname; - - /** */ - private String Itemstandard; - - /** */ - private String stockDw; - - /** */ - private BigDecimal useNum; - - /** */ - private BigDecimal lostpre; - - /** */ - private String zpGuige; - - /** */ - private BigDecimal zpUseNum; - - /** */ - private Long mQty; - - /** */ - private String memolist; - - /** */ - private String pno; - - /** */ - private Date Addtime; - - /** */ - private String mouldNo; - - /** */ - private Long comfirmFlag; - - /** */ - private String comfirmMan; - - /** */ - private Date comfirmDate; - - /** 确认人 */ - private String writeMan; - - /** */ - private String GongCha; - - /** */ - private String factoryMouldNo; - - /** */ - private Long mainMaterial; - - /** */ - private BigDecimal gongchaMore; - - /** */ - private BigDecimal gongchaSmall; - - /** */ - private Date changtime; - - /** */ - private Long cpNum; - - /** */ - private String worklineclass; - - public void setBcpCode(String bcpCode) - { - this.bcpCode = bcpCode; - } - - public String getBcpCode() - { - return bcpCode; - } - public void setBcpName(String bcpName) - { - this.bcpName = bcpName; - } - - public String getBcpName() - { - return bcpName; - } - public void setBcpType(String bcpType) - { - this.bcpType = bcpType; - } - - public String getBcpType() - { - return bcpType; - } - public void setBcpMachineNo(String bcpMachineNo) - { - this.bcpMachineNo = bcpMachineNo; - } - - public String getBcpMachineNo() - { - return bcpMachineNo; - } - public void setBcpDw(String bcpDw) - { - this.bcpDw = bcpDw; - } - - public String getBcpDw() - { - return bcpDw; - } - public void setWlCode(String wlCode) - { - this.wlCode = wlCode; - } - - public String getWlCode() - { - return wlCode; - } - public void setItemname(String Itemname) - { - this.Itemname = Itemname; - } - - public String getItemname() - { - return Itemname; - } - public void setItemstandard(String Itemstandard) - { - this.Itemstandard = Itemstandard; - } - - public String getItemstandard() - { - return Itemstandard; - } - public void setStockDw(String stockDw) - { - this.stockDw = stockDw; - } - - public String getStockDw() - { - return stockDw; - } - public void setUseNum(BigDecimal useNum) - { - this.useNum = useNum; - } - - public BigDecimal getUseNum() - { - return useNum; - } - public void setLostpre(BigDecimal lostpre) - { - this.lostpre = lostpre; - } - - public BigDecimal getLostpre() - { - return lostpre; - } - public void setZpGuige(String zpGuige) - { - this.zpGuige = zpGuige; - } - - public String getZpGuige() - { - return zpGuige; - } - public void setZpUseNum(BigDecimal zpUseNum) - { - this.zpUseNum = zpUseNum; - } - - public BigDecimal getZpUseNum() - { - return zpUseNum; - } - public void setmQty(Long mQty) - { - this.mQty = mQty; - } - - public Long getmQty() - { - return mQty; - } - public void setMemolist(String memolist) - { - this.memolist = memolist; - } - - public String getMemolist() - { - return memolist; - } - public void setPno(String pno) - { - this.pno = pno; - } - - public String getPno() - { - return pno; - } - public void setAddtime(Date Addtime) - { - this.Addtime = Addtime; - } - - public Date getAddtime() - { - return Addtime; - } - public void setMouldNo(String mouldNo) - { - this.mouldNo = mouldNo; - } - - public String getMouldNo() - { - return mouldNo; - } - public void setComfirmFlag(Long comfirmFlag) - { - this.comfirmFlag = comfirmFlag; - } - - public Long getComfirmFlag() - { - return comfirmFlag; - } - public void setComfirmMan(String comfirmMan) - { - this.comfirmMan = comfirmMan; - } - - public String getComfirmMan() - { - return comfirmMan; - } - public void setComfirmDate(Date comfirmDate) - { - this.comfirmDate = comfirmDate; - } - - public Date getComfirmDate() - { - return comfirmDate; - } - public void setWriteMan(String writeMan) - { - this.writeMan = writeMan; - } - - public String getWriteMan() - { - return writeMan; - } - public void setGongCha(String GongCha) - { - this.GongCha = GongCha; - } - - public String getGongCha() - { - return GongCha; - } - public void setFactoryMouldNo(String factoryMouldNo) - { - this.factoryMouldNo = factoryMouldNo; - } - - public String getFactoryMouldNo() - { - return factoryMouldNo; - } - public void setMainMaterial(Long mainMaterial) - { - this.mainMaterial = mainMaterial; - } - - public Long getMainMaterial() - { - return mainMaterial; - } - public void setGongchaMore(BigDecimal gongchaMore) - { - this.gongchaMore = gongchaMore; - } - - public BigDecimal getGongchaMore() - { - return gongchaMore; - } - public void setGongchaSmall(BigDecimal gongchaSmall) - { - this.gongchaSmall = gongchaSmall; - } - - public BigDecimal getGongchaSmall() - { - return gongchaSmall; - } - public void setChangtime(Date changtime) - { - this.changtime = changtime; - } - - public Date getChangtime() - { - return changtime; - } - public void setCpNum(Long cpNum) - { - this.cpNum = cpNum; - } - - public Long getCpNum() - { - return cpNum; - } - public void setWorklineclass(String worklineclass) - { - this.worklineclass = worklineclass; - } - - public String getWorklineclass() - { - return worklineclass; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("bcpCode", getBcpCode()) - .append("bcpName", getBcpName()) - .append("bcpType", getBcpType()) - .append("bcpMachineNo", getBcpMachineNo()) - .append("bcpDw", getBcpDw()) - .append("wlCode", getWlCode()) - .append("Itemname", getItemname()) - .append("Itemstandard", getItemstandard()) - .append("stockDw", getStockDw()) - .append("useNum", getUseNum()) - .append("lostpre", getLostpre()) - .append("zpGuige", getZpGuige()) - .append("zpUseNum", getZpUseNum()) - .append("mQty", getmQty()) - .append("memolist", getMemolist()) - .append("pno", getPno()) - .append("Addtime", getAddtime()) - .append("mouldNo", getMouldNo()) - .append("comfirmFlag", getComfirmFlag()) - .append("comfirmMan", getComfirmMan()) - .append("comfirmDate", getComfirmDate()) - .append("writeMan", getWriteMan()) - .append("GongCha", getGongCha()) - .append("factoryMouldNo", getFactoryMouldNo()) - .append("mainMaterial", getMainMaterial()) - .append("gongchaMore", getGongchaMore()) - .append("gongchaSmall", getGongchaSmall()) - .append("changtime", getChangtime()) - .append("cpNum", getCpNum()) - .append("worklineclass", getWorklineclass()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/ck/mapper/BcpBomMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/ck/mapper/BcpBomMapper.java deleted file mode 100644 index 7a54e31b..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/ck/mapper/BcpBomMapper.java +++ /dev/null @@ -1,73 +0,0 @@ -package com.ruoyi.ck.mapper; - -import com.ruoyi.ck.domain.BcpBom; - -import java.util.List; - -/** - * 半成品bomMapper接口 - * - * @author ruoyi - * @date 2021-09-25 - */ -public interface BcpBomMapper -{ - /** - * 查询半成品bom - * - * @param bcpCode 半成品bomID - * @return 半成品bom - */ - public BcpBom selectBcpBomById(String bcpCode); - - /** - * 查询半成品bom列表 - * - * @param bcpBom 半成品bom - * @return 半成品bom集合 - */ - public List selectBcpBomList(BcpBom bcpBom); - - - - /** - * 查询半成品bom列表分组 - * - * @param bcpBom 半成品bom - * @return 半成品bom集合分组 - */ - - public List selectBomGroupByBcpCode(BcpBom bcpBom); - - /** - * 新增半成品bom - * - * @param bcpBom 半成品bom - * @return 结果 - */ - public int insertBcpBom(BcpBom bcpBom); - - /** - * 修改半成品bom - * - * @param bcpBom 半成品bom - * @return 结果 - */ - public int updateBcpBom(BcpBom bcpBom); - - /** - * 删除半成品bom - * - * @param bcpCode 半成品bomID - * @return 结果 - */ - public int deleteBcpBomById(String bcpCode); - - /** - * 批量删除半成品bom - * - * @param bcpCodes 需要删除的数据ID - * @return 结果 - */ - public int deleteBcpBomByIds(String[] bcpCodes); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/ck/service/IBcpBomService.java b/ruoyi-admin/src/main/java/com/ruoyi/ck/service/IBcpBomService.java deleted file mode 100644 index c3b941ce..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/ck/service/IBcpBomService.java +++ /dev/null @@ -1,72 +0,0 @@ -package com.ruoyi.ck.service; - -import com.ruoyi.ck.domain.BcpBom; - -import java.util.List; - -/** - * 半成品bomService接口 - * - * @author ruoyi - * @date 2021-09-25 - */ -public interface IBcpBomService -{ - /** - * 查询半成品bom - * - * @param bcpCode 半成品bomID - * @return 半成品bom - */ - public BcpBom selectBcpBomById(String bcpCode); - - /** - * 查询半成品bom列表 - * - * @param bcpBom 半成品bom - * @return 半成品bom集合 - */ - public List selectBcpBomList(BcpBom bcpBom); - - - /** - * 查询半成品bom列表分组 - * - * @param bcpBom 半成品bom - * @return 半成品bom集合分组 - */ - public List selectBomGroupByBcpCode(BcpBom bcpBom); - - - /** - * 新增半成品bom - * - * @param bcpBom 半成品bom - * @return 结果 - */ - public int insertBcpBom(BcpBom bcpBom); - - /** - * 修改半成品bom - * - * @param bcpBom 半成品bom - * @return 结果 - */ - public int updateBcpBom(BcpBom bcpBom); - - /** - * 批量删除半成品bom - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - public int deleteBcpBomByIds(String ids); - - /** - * 删除半成品bom信息 - * - * @param bcpCode 半成品bomID - * @return 结果 - */ - public int deleteBcpBomById(String bcpCode); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/ck/service/impl/BcpBomServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/ck/service/impl/BcpBomServiceImpl.java deleted file mode 100644 index 68e0eb1c..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/ck/service/impl/BcpBomServiceImpl.java +++ /dev/null @@ -1,108 +0,0 @@ -package com.ruoyi.ck.service.impl; - -import com.ruoyi.ck.domain.BcpBom; -import com.ruoyi.ck.mapper.BcpBomMapper; -import com.ruoyi.ck.service.IBcpBomService; -import com.ruoyi.common.core.text.Convert; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 半成品bomService业务层处理 - * - * @author ruoyi - * @date 2021-09-25 - */ -@Service -public class BcpBomServiceImpl implements IBcpBomService -{ - @Autowired - private BcpBomMapper bcpBomMapper; - - /** - * 查询半成品bom - * - * @param bcpCode 半成品bomID - * @return 半成品bom - */ - @Override - public BcpBom selectBcpBomById(String bcpCode) - { - return bcpBomMapper.selectBcpBomById(bcpCode); - } - - /** - * 查询半成品bom列表 - * - * @param bcpBom 半成品bom - * @return 半成品bom - */ - @Override - public List selectBcpBomList(BcpBom bcpBom) - { - return bcpBomMapper.selectBcpBomList(bcpBom); - } - - - - /** - * 查询半成品bom列表分组 - * - * @param bcpBom 半成品bom - * @return 半成品bom集合分组 - */ - @Override - public List selectBomGroupByBcpCode(BcpBom bcpBom) { - return bcpBomMapper.selectBomGroupByBcpCode(bcpBom); - } - - /** - * 新增半成品bom - * - * @param bcpBom 半成品bom - * @return 结果 - */ - @Override - public int insertBcpBom(BcpBom bcpBom) - { - return bcpBomMapper.insertBcpBom(bcpBom); - } - - /** - * 修改半成品bom - * - * @param bcpBom 半成品bom - * @return 结果 - */ - @Override - public int updateBcpBom(BcpBom bcpBom) - { - return bcpBomMapper.updateBcpBom(bcpBom); - } - - /** - * 删除半成品bom对象 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - @Override - public int deleteBcpBomByIds(String ids) - { - return bcpBomMapper.deleteBcpBomByIds(Convert.toStrArray(ids)); - } - - /** - * 删除半成品bom信息 - * - * @param bcpCode 半成品bomID - * @return 结果 - */ - @Override - public int deleteBcpBomById(String bcpCode) - { - return bcpBomMapper.deleteBcpBomById(bcpCode); - } -} diff --git a/ruoyi-admin/src/main/resources/mapper/ck/BcpBomMapper.xml b/ruoyi-admin/src/main/resources/mapper/ck/BcpBomMapper.xml deleted file mode 100644 index 02a43caf..00000000 --- a/ruoyi-admin/src/main/resources/mapper/ck/BcpBomMapper.xml +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select BCP_CODE, BCP_NAME, BCP_TYPE, BCP_Machine_NO, BCP_DW, Wl_Code, Itemname, Itemstandard, Stock_dw, Use_Num, lostpre, zp_guige, zp_use_num, m_qty, memolist, pno, Addtime, Mould_No, Comfirm_Flag, Comfirm_man, Comfirm_date, write_man, GongCha, Factory_Mould_no, Main_Material, gongcha_more, gongcha_small, changtime, CP_NUM, worklineclass from bcp_bom - - - - - - - - - - - insert into bcp_bom - - BCP_CODE, - BCP_NAME, - BCP_TYPE, - BCP_Machine_NO, - BCP_DW, - Wl_Code, - Itemname, - Itemstandard, - Stock_dw, - Use_Num, - lostpre, - zp_guige, - zp_use_num, - m_qty, - memolist, - pno, - Addtime, - Mould_No, - Comfirm_Flag, - Comfirm_man, - Comfirm_date, - write_man, - GongCha, - Factory_Mould_no, - Main_Material, - gongcha_more, - gongcha_small, - changtime, - CP_NUM, - worklineclass, - - - #{bcpCode}, - #{bcpName}, - #{bcpType}, - #{bcpMachineNo}, - #{bcpDw}, - #{wlCode}, - #{Itemname}, - #{Itemstandard}, - #{stockDw}, - #{useNum}, - #{lostpre}, - #{zpGuige}, - #{zpUseNum}, - #{mQty}, - #{memolist}, - #{pno}, - #{Addtime}, - #{mouldNo}, - #{comfirmFlag}, - #{comfirmMan}, - #{comfirmDate}, - #{writeMan}, - #{GongCha}, - #{factoryMouldNo}, - #{mainMaterial}, - #{gongchaMore}, - #{gongchaSmall}, - #{changtime}, - #{cpNum}, - #{worklineclass}, - - - - - update bcp_bom - - BCP_NAME = #{bcpName}, - BCP_TYPE = #{bcpType}, - BCP_Machine_NO = #{bcpMachineNo}, - BCP_DW = #{bcpDw}, - Wl_Code = #{wlCode}, - Itemname = #{Itemname}, - Itemstandard = #{Itemstandard}, - Stock_dw = #{stockDw}, - Use_Num = #{useNum}, - lostpre = #{lostpre}, - zp_guige = #{zpGuige}, - zp_use_num = #{zpUseNum}, - m_qty = #{mQty}, - memolist = #{memolist}, - pno = #{pno}, - Addtime = #{Addtime}, - Mould_No = #{mouldNo}, - Comfirm_Flag = #{comfirmFlag}, - Comfirm_man = #{comfirmMan}, - Comfirm_date = #{comfirmDate}, - write_man = #{writeMan}, - GongCha = #{GongCha}, - Factory_Mould_no = #{factoryMouldNo}, - Main_Material = #{mainMaterial}, - gongcha_more = #{gongchaMore}, - gongcha_small = #{gongchaSmall}, - changtime = #{changtime}, - CP_NUM = #{cpNum}, - worklineclass = #{worklineclass}, - - where BCP_CODE = #{bcpCode} - - - - delete from bcp_bom where BCP_CODE = #{bcpCode} - - - - delete from bcp_bom where BCP_CODE in - - #{bcpCode} - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/ck/bcpbom/add.html b/ruoyi-admin/src/main/resources/templates/ck/bcpbom/add.html deleted file mode 100644 index 5c8447b4..00000000 --- a/ruoyi-admin/src/main/resources/templates/ck/bcpbom/add.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - 代码生成请选择字典属性 -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/ck/bcpbom/bcpbom.html b/ruoyi-admin/src/main/resources/templates/ck/bcpbom/bcpbom.html deleted file mode 100644 index 8decb7a2..00000000 --- a/ruoyi-admin/src/main/resources/templates/ck/bcpbom/bcpbom.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  • - - -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -  搜索 -  重置 -
  • -
-
-
-
- - -
-
-
-
-
- - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/ck/bcpbom/edit.html b/ruoyi-admin/src/main/resources/templates/ck/bcpbom/edit.html deleted file mode 100644 index 89516282..00000000 --- a/ruoyi-admin/src/main/resources/templates/ck/bcpbom/edit.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - -
-
-
-
-
    - -
  • - - -
  • -
  • - - -
  • - -
-
-
-
-
-
-
- -
- - - - - - - \ No newline at end of file