package com.fzzy.igds.app.v1.service.impl;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.fzzy.igds.app.v1.constant.PhoneConstant;
|
import com.fzzy.igds.app.v1.data.AuthUser;
|
import com.fzzy.igds.app.v1.data.PhoneRequest;
|
import com.fzzy.igds.app.v1.data.PhoneResponse;
|
import com.fzzy.igds.app.v1.service.PhoneService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Author: YYC
|
* @Description: 粮情数据查看-圆筒仓粮情接口
|
* @DateTime: 2026-1-12 14:43
|
**/
|
@Service
|
public class ServiceImpl5203 implements PhoneService {
|
|
@Override
|
public String getInterfaceId() {
|
return PhoneConstant.API_PHONE_5203;
|
}
|
|
@Override
|
public PhoneResponse<Object> execute(PhoneRequest<JSONObject> req, AuthUser authUser) throws Exception {
|
return null;
|
}
|
}
|