FormulaParamConfigDao.java 554 Bytes
Newer Older
1
package pwc.taxtech.atms.dao;
eddie.woo's avatar
eddie.woo committed
2 3 4

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
5 6
import pwc.taxtech.atms.entity.FormulaParamConfig;
import pwc.taxtech.atms.entity.FormulaParamConfigExample;
eddie.woo's avatar
eddie.woo committed
7 8 9 10 11 12 13 14 15 16 17 18 19

import java.util.List;

@Service
public class FormulaParamConfigDao {
    @Autowired
    FormulaParamConfigMapper mapper;

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