| | |
| | | |
| | | import cn.hutool.core.date.DateTime; |
| | | import cn.hutool.core.date.DateUnit; |
| | | import cn.hutool.core.date.DateUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.ltkj.LtkjApplication; |
| | | import com.ltkj.common.core.redis.RedisCache; |
| | | import com.ltkj.common.utils.SecurityUtils; |
| | | import com.ltkj.hosp.domain.DictHosp; |
| | | import com.ltkj.hosp.domain.TjProject; |
| | | import com.ltkj.hosp.service.*; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.junit.Test; |
| | |
| | | import org.springframework.boot.autoconfigure.EnableAutoConfiguration; |
| | | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | import org.springframework.data.redis.core.Cursor; |
| | | import org.springframework.data.redis.core.RedisTemplate; |
| | | import org.springframework.data.redis.core.ScanOptions; |
| | | import org.springframework.data.redis.core.StringRedisTemplate; |
| | | import org.springframework.test.context.junit4.SpringRunner; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | // |
| | | // @Autowired |
| | | // private ITjGroupingProService groupingProService; |
| | | // @Autowired |
| | | // private ITjProjectService projectService; |
| | | @Autowired |
| | | private ITjProjectService projectService; |
| | | // |
| | | // @Resource |
| | | // private ITjOrderService tjOrderService; |
| | |
| | | // @Resource |
| | | // private ITjOrderRemarkService remarkService; |
| | | // |
| | | // @Resource |
| | | // private RedisCache redisCache; |
| | | @Resource |
| | | private RedisCache redisCache; |
| | | // |
| | | // @Autowired |
| | | // public RedisTemplate<String,String> redisTemplate; |
| | | @Autowired |
| | | public RedisTemplate<Object,Object> redisTemplate; |
| | | // @Resource |
| | | // private StringRedisTemplate stringRedisTemplate; |
| | | @Resource |
| | |
| | | @Test |
| | | public void test() { |
| | | // List<DictHosp> list = dictHospService.list(); |
| | | // DateTime dateTime1 = DateUtil.offsetMonth(new Date(),100); |
| | | // for (DictHosp dictHosp : list) { |
| | | // DateTime dateTime1 = DateUtil.offsetMonth(new Date(),6); |
| | | // String mallMerchantSecretKey = SecurityUtils.getMallMerchantSecretKey(secret,dictHosp.getHospAreaId(),dictHosp.getHospAreaName(),dictHosp.getExpirationTime()); |
| | | // String mallMerchantSecretKey = SecurityUtils.getMallMerchantSecretKey(secret,dictHosp.getHospAreaId(),dictHosp.getHospAreaName(),dateTime1); |
| | | // dictHosp.setSecretKey(mallMerchantSecretKey); |
| | | // dictHosp.setExpirationTime(DateUtil.offsetDay(new Date(),30)); |
| | | // dictHosp.setExpirationTime(dateTime1); |
| | | // dictHospService.updateById(dictHosp); |
| | | // System.out.println(dateTime1); |
| | | // System.out.println("================================================="); |
| | | // System.out.println(mallMerchantSecretKey); |
| | | // } |
| | | } |
| | | // } |
| | | |
| | | } |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | // lat 39.97646 |
| | | //log 116.3039 |
| | | // String add = getAdd("116.3039", "39.97646"); |
| | | // JSONObject jsonObject = JSONObject.parseObject(add); |
| | | // JSONArray jsonArray = JSONArray.parseArray(jsonObject.getString("addrList")); |
| | | // JSONObject j_2 = JSONObject.parseObject(String.valueOf(jsonArray.get(0))); |
| | | // String allAdd = j_2.getString("admName"); |
| | | // String arr[] = allAdd.split(","); |
| | | // System.out.println("省:"+arr[0]+"\n市:"+arr[1]+"\n区:"+arr[2]); |
| | | |
| | | // String a ="你好哈哈哈哈哈哈"; |
| | | // String s = a.toUpperCase(Locale.ROOT); |
| | | // System.out.println(s); |
| | | // String dateStr1 = "2024-03-01 22:33:23"; |
| | | // Date date1 = DateUtil.parse(dateStr1); |
| | | // |
| | | ////相差一个月,31天 |
| | | // long betweenDay = DateUtil.between(new Date(),date1, DateUnit.DAY); |
| | | // System.out.println(betweenDay); |
| | | // System.out.println(DateUtil.between(new Date(),date1, DateUnit.MS)); |
| | | // System.out.println(DateUtil.between(new Date(),date1, DateUnit.SECOND)); |
| | | } |
| | | // |
| | | // public static String getAdd(String log, String lat ){ |