xiaoyong931011
2021-05-18 7d098b8c03c2a3f2dc7b51f73cc8d16b56dfa764
src/main/java/com/xcong/excoin/modules/otc/controller/OtcController.java
@@ -8,6 +8,7 @@
import com.xcong.excoin.modules.otc.entity.OtcEntrustOrderEntity;
import com.xcong.excoin.modules.otc.entity.OtcMarketBussinessEntity;
import com.xcong.excoin.modules.otc.entity.OtcOrderAppealEntity;
import com.xcong.excoin.modules.otc.entity.OtcOrderEntity;
import com.xcong.excoin.modules.otc.service.OtcService;
import lombok.RequiredArgsConstructor;
import org.springframework.validation.annotation.Validated;
@@ -94,4 +95,13 @@
        return new FebsResponse().success().data(data);
    }
    /**
     * 订单列表
     */
    @GetMapping("otcOrderList")
    public FebsResponse otcOrderList(OtcOrderEntity otcOrderEntity, QueryRequest request) {
        Map<String, Object> data = getDataTable(otcService.otcOrderList(otcOrderEntity, request));
        return new FebsResponse().success().data(data);
    }
}