All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mzt.logapi.service.impl.DefaultParseFunction Maven / Gradle / Ivy

There is a newer version: 3.0.6-oxadmin
Show newest version
package com.mzt.logapi.service.impl;


import com.mzt.logapi.service.IParseFunction;

/**
 * @author muzhantong
 * create on 2021/2/6 9:58 上午
 */
public class DefaultParseFunction implements IParseFunction {

    @Override
    public boolean executeBefore() {
        return true;
    }

    @Override
    public String functionName() {
        return null;
    }

    @Override
    public String apply(Object value) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy