package cn.timer.api.controller.zpgl.sevice; import cn.timer.api.bean.zpgl.ZpglMslcLog; import org.springframework.stereotype.Service; import javax.transaction.Transactional; /** * @author wuqingjun * @email 284718418@qq.com * @date 2022/3/14 */ @Service @Transactional(rollbackOn = Exception.class) public class ZpglMslcLogServiceImpl implements ZpglMslcLogService { @Override public boolean saveZpglMslcLog(ZpglMslcLog zpglMslcLog) { return zpglMslcLog.insert(); } }