Helius
2021-07-20 56968f6f02f691397eac17d8fb8f8b34f440ab90
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);
    }
 
 
 
 
 
}