package pwc.taxtech.atms.dao;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import pwc.taxtech.atms.entity.FormulaConfig;
import pwc.taxtech.atms.entity.FormulaConfigExample;

import java.util.List;

@Service
public class FormulaConfigDao {
    @Autowired
    FormulaConfigMapper mapper;

    public List<FormulaConfig> getAll() {
        FormulaConfigExample example = new FormulaConfigExample();
        return mapper.selectByExample(example);
    }
}