文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

oracle 指定类型和指定位数创建序列号的代码详解

2024-04-02 19:55

关注

一、脚本部分

1. 表结构

有注释

-- Create table
create table LDMAXNO
(
  NOTYPE  VARCHAR2(17) not null,
  NOLIMIT VARCHAR2(12) not null,
  MAXNO   INTEGER not null
);
-- Add comments to the table 
comment on table LDMAXNO
  is '产生最大的流水号,所有的号码从1开始';
-- Add comments to the columns 
comment on column LDMAXNO.NOTYPE
  is '含义描述:1、号码类型';
comment on column LDMAXNO.NOLIMIT
  is '含义描述:1、号码限制条件';
comment on column LDMAXNO.MAXNO
  is '含义描述:1、当前最大值';
-- Create/Recreate primary, unique and foreign key constraints 
alter table LDMAXNO
  add constraint PK_LDMAXNO primary key (NOTYPE, NOLIMIT);

2. 函数

  create or replace function CreateMaxNos(cNoType  in ldmaxno.notype%type,
                                       cNoLimit in ldmaxno.nolimit%type)
  return integer is
  pragma autonomous_transaction;
  tMaxNo integer := 0; --初始化赋值等于0,定义返回变量
begin
  --最大数加1
  update LDMaxNo
     set MaxNo = MaxNo + 1
   where NoType = cNoType
     and NoLimit = cNoLimit
  Returning MaxNo Into tMaxNo; --取出最大数
  If (Sql%Notfound) then
    --第一次向数据库中插入最大数为 1 的记录
    Insert Into LDMaxNo
      (NOTYPE, NOLIMIT, MAXNO)
    values
      (cNoType, cNoLimit, 1);
    tMaxNo := 1;
  End If;
  commit;

  return(tMaxNo); --返回结果
end CreateMaxNos;
/

二、代码部分

2.1. xml

DullMapper.xml

<?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.gblfy.business.mapper.DullMapper">

    <select id="getMaxNo" resultType="java.lang.String">
         select createmaxno(#{cNoType},#{cNoLength}) from dual
    </select>
</mapper>

2.2. 接口

DullMapper.java

package com.gblfy.business.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;

public interface DullMapper extends BaseMapper {

    
    String getMaxNo(@Param("cNoType") String cNoType, @Param("cNoLength") int cNoLength);
}

2.3. api接口

package com.gblfy.business.service;
public interface SysMaxNoService {
    
    String createMaxNo(String cNoType, int cNoLength);
}

2.4. api实例

package com.gblfy.business.service.impl;
import com.gblfy.business.mapper.DullMapper;
import com.gblfy.business.service.SysMaxNoService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.math.BigInteger;
@Service
public class SysMaxNoServiceImpl implements SysMaxNoService {
    private final static Logger logger = LoggerFactory.getLogger(SysMaxNoServiceImpl.class);
    @Resource
    private DullMapper dullMapper;
    
    @Override
    public String createMaxNo(String cNoType, int cNoLength) {
        if ((cNoType == null) || (cNoType.trim().length() <= 0) ||
                (cNoLength <= 0)) {
            logger.info("NoType长度错误 {} NoLength错误", cNoType, cNoLength);
            return null;
        }
        cNoType = cNoType.toUpperCase();
        String tReturn = "";
        String cNoLimit = "SN";
        BigInteger tMaxNo = new BigInteger("0");
        tReturn = cNoLimit;
        try {
            String result = dullMapper.getMaxNo(cNoType, cNoLength);
            tMaxNo = new BigInteger(result);
        } catch (Exception e) {
            e.printStackTrace();
            logger.info("生成流水号出现异常,请核实!");
        }
        String tStr = tMaxNo.toString();
        //将生成的流水号进行加工处理
        tStr = LCh(tStr, "0", cNoLength);
        tReturn = tStr.trim();
        return tReturn;
    }
    
    private String LCh(String sourString, String cChar, int cLen) {
        int tLen = sourString.length();
        int i, iMax;
        String tReturn = "";
        if (tLen >= cLen) {
            return sourString;
        }
        //1.判断是否满足指定长度,如果不满足前面用0来补位
        iMax = cLen - tLen;
        for (i = 0; i < iMax; i++) {
            tReturn += cChar;
        }
        //2.将生成的流水号进行去空格处理
        //3.将最终的流水号进行字符串拼接
        tReturn = tReturn.trim() + sourString.trim();
        return tReturn;
    }
}

2.5. 控制层

package com.gblfy.business.controller;
import com.gblfy.business.service.SysMaxNoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class SysMaxNoController {
    @Autowired
    private SysMaxNoService maxNoService;
    
    @GetMapping("/generate/serial/number")
    public String generateSerialNumber(@RequestParam(name = "cNoType", required = false, defaultValue = "cNoType") String cNoType,
                                       @RequestParam int cNoLength) {
        return maxNoService.createMaxNo(cNoType, cNoLength);
    }
}

三、测试

3.1. 效果图

到此这篇关于oracle 指定类型和指定位数创建序列号的文章就介绍到这了,更多相关oracle创建序列号内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯