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; } }