LogService.java 266 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package com.uccc.log.service; import com.uccc.pretty.common.SystemLog; /** * Created by bert on 2021-09-15 13:16 */ public interface LogService { /** * insert log * @param systemLog * @return */ int insertLog(SystemLog systemLog); }