许鹏程
2023-05-25 213cc37cbf0b2515a4de56cc1e01813211bad183
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.product.admin.service;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import com.product.core.dao.BaseDao;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
import com.product.core.service.support.AbstractBaseService;
 
/**
 * Copyright  LX-BASE
 * @Title: SystemProductsService
 * @Project: LX-BASE-SERVER
 * @Date:  2020-06-01 17:16   
 * @Author: zhoujie
 * @Description:  产品管理Service层
 */
@Service
public class SystemProductsService extends AbstractBaseService {
 
    @Autowired
    public BaseDao baseDao;
    
    /**
     * @Date: 2020-11-19 14:58   
     * @Author: ZhouJie
     * @Description: 查看产品详情
     */
    public FieldSetEntity findProduct(FieldSetEntity fs) throws BaseException {
        FieldSetEntity pfs = baseDao.getFieldSetEntity("product_sys_products", fs.getString("uuid"), true);      
        return baseDao.listInternationDataTable(pfs, null);    
    }
 
 
}