sgj
7 天以前 22a4f2b58fa1baa233e621d1406df456b516b4b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
    }
}