1234567891011121314151617 |
- package com.jeeplus.modules.sg.service;
- import com.jeeplus.modules.sg.entity.RuleRatio;
- import com.jeeplus.modules.sg.mapper.JkxlMapper;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- @Service
- public class JkxlService {
- @Autowired
- private JkxlMapper jkxlMapper;
- public RuleRatio getValueByName(String ratioName){
- return jkxlMapper.getValue(ratioName);
- }
- }
|