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;
|
}
|
}
|