You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
508 B
30 lines
508 B
6 years ago
|
package ${package}.redis;
|
||
|
|
||
|
import ${main}.commons.tools.redis.RedisUtils;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
/**
|
||
|
* ${comments}
|
||
|
*
|
||
|
* @author ${author} ${email}
|
||
|
* @since ${version} ${date}
|
||
|
*/
|
||
|
@Component
|
||
|
public class ${className}Redis {
|
||
|
@Autowired
|
||
|
private RedisUtils redisUtils;
|
||
|
|
||
|
public void delete(Object[] ids) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public void set(){
|
||
|
|
||
|
}
|
||
|
|
||
|
public String get(String id){
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|