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

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,21 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 第三方平台对应sn编号相关DTO
*
* @author Lemon
* @Date 2024/3/11 14:24:06
*/
@Data
public class ThirdPartySnRelationDTO {
// 桩编号
private String pileSn;
// 第三方平台类型
private String thirdPartyType;
// 第三方平台对应的sn
private String thirdPartySn;
}