ZpglMslcLogServiceImpl.java 498 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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();
    }
}