基于 SpringBoot 2.X 框架的智能制造云办公系统,已开源

简介

基于SpringBoot 2.X框架的智能制造云办公系统,立志打造ERP+生产功能的软件,专注进销存+财务功能+生产管理,适合各行业。主要完成从下单->进货->生产->出库的过程,涉及到领料,出入库,工序,采购,销售,仓库等功能,对权限进行精确划分,同时支持多系统集成方案,可与OA,CRM,知识库等多个系统进行集成使用。

开源版功能介绍

技术选型

后端技术:

前端技术:

效果图

部分代码



package com.skyeye.enclosure.controller;

import com.skyeye.annotation.api.Api;
import com.skyeye.annotation.api.ApiImplicitParam;
import com.skyeye.annotation.api.ApiImplicitParams;
import com.skyeye.annotation.api.ApiOperation;
import com.skyeye.common.object.InputObject;
import com.skyeye.common.object.OutputObject;
import com.skyeye.enclosure.entity.EnclosureLinkApi;
import com.skyeye.enclosure.service.EnclosureLinkService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @ClassName: EnclosureLinkController
 * @Description: 附件信息与业务对象关系的控制层
 * @author: skyeye云系列--卫志强
 * @date: 2022/9/18 16:00
 * @Copyright: 2022 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved.
 * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的
 */
@RestController
@Api(value = "附件与业务对象关系管理", tags = "附件与业务对象关系管理", modelName = "基本服务")
public class EnclosureLinkController {

    @Autowired
    private EnclosureLinkService enclosureLinkService;

    /**
     * 新增/编辑附件与业务对象关系
     *
     * @param inputObject  入参以及用户信息等获取对象
     * @param outputObject 出参以及提示信息的返回值对象
     */
    @ApiOperation(id = "writeEnclosureLink", value = "新增/编辑附件与业务对象关系", method = "POST", allUse = "2")
    @ApiImplicitParams(classBean = EnclosureLinkApi.class)
    @RequestMapping("/post/EnclosureLinkController/writeEnclosureLink")
    public void writeEnclosureLink(InputObject inputObject, OutputObject outputObject) {
        enclosureLinkService.writeEnclosureLink(inputObject, outputObject);
    }

    /**
     * 根据业务对象数据获取附件与业务对象关系
     *
     * @param inputObject  入参以及用户信息等获取对象
     * @param outputObject 出参以及提示信息的返回值对象
     */
    @ApiOperation(id = "queryEnclosureLinkList", value = "根据业务对象数据获取附件与业务对象关系", method = "POST", allUse = "2")
    @ApiImplicitParams({
        @ApiImplicitParam(id = "objectId", name = "objectId", value = "业务对象数据的id", required = "required"),
        @ApiImplicitParam(id = "objectKey", name = "objectKey", value = "业务对象服务的className", required = "required")})
    @RequestMapping("/post/EnclosureLinkController/queryEnclosureLinkList")
    public void queryEnclosureLinkList(InputObject inputObject, OutputObject outputObject) {
        enclosureLinkService.queryEnclosureLinkList(inputObject, outputObject);
    }

    /**
     * 根据业务对象数据删除附件与业务对象关系
     *
     * @param inputObject  入参以及用户信息等获取对象
     * @param outputObject 出参以及提示信息的返回值对象
     */
    @ApiOperation(id = "deleteEnclosureLink", value = "根据业务对象数据删除附件与业务对象关系", method = "POST", allUse = "2")
    @ApiImplicitParams({
        @ApiImplicitParam(id = "objectId", name = "objectId", value = "业务对象数据的id", required = "required"),
        @ApiImplicitParam(id = "objectKey", name = "objectKey", value = "业务对象服务的className", required = "required")})
    @RequestMapping("/post/EnclosureLinkController/deleteEnclosureLink")
    public void deleteEnclosureLink(InputObject inputObject, OutputObject outputObject) {
        enclosureLinkService.deleteEnclosureLink(inputObject, outputObject);
    }

}

开源地址

  • https://gitee.com/doc_wei01/erp-pro

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

weixin_37576193

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值