|
|
@ -11,7 +11,6 @@ import com.ccsens.game.bean.dto.ScreenDto; |
|
|
|
import com.ccsens.game.bean.dto.message.BaseMessageDto; |
|
|
|
import com.ccsens.game.bean.dto.message.ChromeMessageDto; |
|
|
|
import com.ccsens.game.bean.po.*; |
|
|
|
import com.ccsens.game.bean.vo.ClientVo; |
|
|
|
import com.ccsens.game.bean.vo.ScreenVo; |
|
|
|
import com.ccsens.game.persist.dao.*; |
|
|
|
import com.ccsens.game.util.GameConstant; |
|
|
@ -25,7 +24,6 @@ import com.ccsens.util.exception.BaseException; |
|
|
|
import com.fasterxml.jackson.core.JsonProcessingException; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.amqp.rabbit.core.RabbitTemplate; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.data.redis.core.ZSetOperations; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
@ -36,6 +34,9 @@ import java.io.File; |
|
|
|
import java.util.*; |
|
|
|
import java.util.concurrent.*; |
|
|
|
|
|
|
|
/** |
|
|
|
* @author zy |
|
|
|
*/ |
|
|
|
@Slf4j |
|
|
|
@Service |
|
|
|
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class) |
|
|
@ -62,8 +63,6 @@ public class ScreenService implements IScreenService{ |
|
|
|
@Autowired |
|
|
|
private Snowflake snowflake; |
|
|
|
@Autowired |
|
|
|
private RabbitTemplate rabbitTemplate; |
|
|
|
@Autowired |
|
|
|
private SendMsg sendMsg; |
|
|
|
@Autowired |
|
|
|
private RedisUtil redisUtil; |
|
|
|