cjl
2023-07-26 0ce061d9ed37a6c25fff70e4734fa8cc8747237c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.moral.api.service.impl;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import com.moral.api.mapper.HistoryMinutelyMapper;
import com.moral.api.service.HistoryMinutelyService;
 
@Service
public class HistoryMinutelyServiceImpl implements HistoryMinutelyService {
 
    @Autowired
    private HistoryMinutelyMapper historyMinutelyMapper;
 
    @Override
    public void createTable(String timeUnits) {
        historyMinutelyMapper.createTable(timeUnits);
    }
 
}