wl
2022-11-30 1085fd42401762f9d5b65f137d9ab758e413e3b9
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);
}