fix
Helius
2021-07-15 9c7facb28b6c95717fd01030973bafe26c3ac2c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xzx.gc.order.service;
 
import com.xzx.gc.entity.OrderStorageInfo;
import com.xzx.gc.order.mapper.OrderStorageInfoMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import tk.mybatis.mapper.entity.Example;
 
import java.util.List;
 
@Service
@Transactional
public class OrderStorageService {
 
    @Autowired
    private OrderStorageInfoMapper orderStorageInfoMapper;
 
    public void add(OrderStorageInfo orderStorageInfo){
 
        orderStorageInfoMapper.insertSelective(orderStorageInfo);
    }
 
}