lngStation转换
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
package com.xjrsoft.module.mdm.client;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
|
||||
import com.xjrsoft.common.constant.GlobalConstant;
|
||||
|
||||
/**
|
||||
* @author: ksy
|
||||
* @since: 2025/11/5
|
||||
*/
|
||||
@FeignClient(value = GlobalConstant.CLIENT_PCITC_MDM_NAME, path = GlobalConstant.CLIENT_API_PRE + GlobalConstant.MDM_MODULE_PREFIX + "/tran/lngStation")
|
||||
public interface ILngStationClient {
|
||||
|
||||
@GetMapping("/getAllTranData")
|
||||
Map<String,String> getAllTranData();
|
||||
|
||||
@GetMapping("/getTranById")
|
||||
String getTranById(@RequestParam("id")String id);
|
||||
|
||||
}
|
||||
@ -44,6 +44,7 @@ public class LngBPngLinePageVo {
|
||||
* 自有接收站(惠州/阳江)
|
||||
*/
|
||||
@ApiModelProperty("自有接收站(惠州/阳江)")
|
||||
@Trans(type = TransType.LNG_STATION)
|
||||
private String staCodeLng;
|
||||
/**
|
||||
* 显示顺序
|
||||
|
||||
Reference in New Issue
Block a user