1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ycl.mapper.common;
|
| import org.apache.ibatis.annotations.Param;
| import org.springframework.stereotype.Repository;
|
| /**
| * GeneratedCode 编码生成表
| *
| * @version V1.0
| * @author: AI
| * @date: 2022-10-10 15:38
| **/
| @Repository
| public interface GeneratedCodeMapper {
| Integer createNumber(@Param("ymd") String ymd, @Param("type") String type);
| }
|
|