Helius
2021-06-30 02b38bb7c08d68fffc6af25e4ba00a456d96e94e
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
package com.xzx.gc.order.service;
 
import com.xzx.gc.entity.SysStorage;
import com.xzx.gc.order.mapper.SysStorageMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
@Service
@Transactional
public class SysStorageService {
 
    @Autowired
    private SysStorageMapper sysStorageMapper;
 
 
    public SysStorage findById(Integer id){
        return sysStorageMapper.selectByPrimaryKey(id);
    }
 
 
 
 
 
}