FinProResService.java 478 Bytes
Newer Older
刘基明's avatar
刘基明 committed
1
package com.tanpu.community.service.other;
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

import com.tanpu.community.dao.entity.user.FinProResEntity;
import com.tanpu.community.dao.mapper.user.FinProResMapper;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;

/**
 * 产品详情
 */
@Service
public class FinProResService {

    @Resource
    private FinProResMapper finProResMapper;

    public FinProResEntity selectById(String id){
        return finProResMapper.selectById(id);
    }
}