ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.springblade.code.algorithm;
 
import org.springblade.code.annotation.MdmSerialAlgorithm;
import org.springblade.code.annotation.MdmSerialAlgorithmMethod;
 
/**
 * 流水算法的示例
 */
@MdmSerialAlgorithm(text = "流水算法的示例",description = "请不要使用这个类,这个类只是示例,用于查看如何编写流水算法")
public class CustomSerialAlgorithmExample {
 
    /**
     * 生成流水号的方法
     * @return 流水号的信息
     */
    @MdmSerialAlgorithmMethod
    public String serialGenerate(){
        return "";
    }
}