TBMessageServiceImpl.java 383 B

123456789101112
  1. package cn.com.lzt.sign.service.impl;
  2. import cn.com.lzt.sign.service.TBMessageService;
  3. import javax.transaction.Transactional;
  4. import org.jeecgframework.core.common.service.impl.CommonServiceImpl;
  5. import org.springframework.stereotype.Service;
  6. @Service("tBMessageService")
  7. @Transactional
  8. public class TBMessageServiceImpl extends CommonServiceImpl implements TBMessageService {}