package pwc.taxtech.atms.dao;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import pwc.taxtech.atms.entity.FormulaParamConfig;
import pwc.taxtech.atms.entity.FormulaParamConfigExample;

import java.util.List;

@Service
public class FormulaParamConfigDao {
    @Autowired
    FormulaParamConfigMapper mapper;

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