package com.epmet.redis; import com.epmet.commons.tools.redis.RedisUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; /** * 疫苗接种点 * * @author generator generator@elink-cn.com * @since v1.0.0 2022-06-20 */ @Component public class IcPointVaccinesInoculationRedis { @Autowired private RedisUtils redisUtils; public void delete(Object[] ids) { } public void set(){ } public String get(String id){ return null; } }