forked from luyan/epmet-cloud-lingshan
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
540 B
30 lines
540 B
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;
|
|
}
|
|
|
|
}
|