1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.gkhy.assess.system.service;
|
| import com.gkhy.assess.system.domain.vo.CaptchaVO;
|
| import java.awt.image.BufferedImage;
|
| public interface CaptchaService {
|
| /**
| * 生成验证码图片
| * @return
| */
| CaptchaVO captchaImage();
|
| }
|
|