xiaoyong931011
2021-06-25 6e686b5f3e261b7c6a0bd95993a3dceceeeea9ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xzx.gc.shop.service;
 
import com.xzx.gc.shop.dto.QueryJhyOrderListDto;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.Map;
 
@Service
@Transactional
@Slf4j
public class JhyService {
    public Map<String, Object> queryOrderList(QueryJhyOrderListDto model) {
        return null;
    }
}