package com.mes.service.pp;
|
|
import cn.hutool.core.util.StrUtil;
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
import com.mes.common.CacheUtil;
|
import com.mes.common.Result;
|
import com.mes.entity.GlassInfo;
|
import com.mes.entity.Tempered;
|
import com.mes.entity.userInfo.User;
|
import com.mes.mapper.SelectInfo;
|
import com.mes.mapper.userInfo.UserMapper;
|
import com.mes.controller.dto.UserDTO;
|
import com.mes.tools.TokenTools;
|
import org.apache.ibatis.jdbc.Null;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.cache.annotation.CacheEvict;
|
import org.springframework.cache.annotation.Cacheable;
|
import org.springframework.stereotype.Service;
|
import org.springframework.transaction.annotation.Transactional;
|
|
import java.util.List;
|
|
@Service
|
@DS("pp")
|
public class SelectdppService {
|
|
@Autowired
|
private SelectInfo SelectInfo;
|
|
public GlassInfo getUserInfo(String process_id){
|
return SelectInfo.SelectGlassId(process_id);
|
}
|
|
public List<Tempered> getSelectTempered(String process_id){
|
return SelectInfo.SelectTempered(process_id);
|
}
|
|
|
}
|