新增 后管设置桩对应第三方平台编号页面

This commit is contained in:
Lemon
2024-03-11 16:07:20 +08:00
parent c73bc074cd
commit 0cec8f18ce
9 changed files with 244 additions and 4 deletions

View File

@@ -0,0 +1,28 @@
package com.jsowell.pile.vo.web;
import lombok.Data;
/**
* 第三方平台桩编号对应VO
*
* @author Lemon
* @Date 2024/3/11 10:33:51
*/
@Data
public class ThirdPartySnRelationVO {
/**
* 桩编号
*/
private String pileSn;
// 第三方平台类型
private String thirdPartyType;
// 第三方平台名称
private String thirdPartyName;
// 第三方平台对应的sn
private String thirdPartySn;
}