mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
43 lines
590 B
Java
43 lines
590 B
Java
package com.jsowell.pile.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 个人桩绑定DTO
|
|
*
|
|
* @author JS-ZZA
|
|
* @date 2023/2/20 16:46
|
|
*/
|
|
@Data
|
|
public class PileMemberBindingDTO {
|
|
/**
|
|
* 桩编码
|
|
*/
|
|
private String pileSn;
|
|
|
|
/**
|
|
* 个人桩密钥
|
|
*/
|
|
private String secretKey;
|
|
|
|
/**
|
|
* 手机号
|
|
*/
|
|
private String phoneNumber;
|
|
|
|
/**
|
|
* 验证码
|
|
*/
|
|
private String verificationCode;
|
|
|
|
/**
|
|
* 用户memberId
|
|
*/
|
|
private String memberId;
|
|
|
|
/**
|
|
* 一级运营商id
|
|
*/
|
|
private String firstLevelMerchantId;
|
|
}
|