package com.ruoyi.integration.rocket.model;
|
|
import com.ruoyi.integration.rocket.base.BaseMessage;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
/**
|
* 离线卡数据清除应答
|
**/
|
|
@Data
|
public class ClearOfflineCardReplyMessage extends BaseMessage {
|
|
private String charging_pile_code; //桩编码
|
private String physical_card1; // 第 1 个卡物理卡号,离线卡物理卡号
|
private String physical_card2;
|
private String physical_card3;
|
private String physical_card4;
|
private String physical_card5;
|
private String physical_card6;
|
private String physical_card7;
|
private String physical_card8;
|
private String physical_card9;
|
private String physical_card10;
|
private String physical_card11;
|
private String physical_card12;
|
private String physical_card13;
|
private String physical_card14;
|
private String physical_card15;
|
private String physical_card16;
|
private String physical_card17;
|
private String physical_card18;
|
private String physical_card19;
|
private String physical_card20;
|
private String physical_card21;
|
private String physical_card22;
|
private String physical_card23;
|
private String physical_card24;
|
private Integer clear_result1; // 清除标记(0:清除失败,1:清除成功)
|
private Integer clear_result2;
|
private Integer clear_result3;
|
private Integer clear_result4;
|
private Integer clear_result5;
|
private Integer clear_result6;
|
private Integer clear_result7;
|
private Integer clear_result8;
|
private Integer clear_result9;
|
private Integer clear_result10;
|
private Integer clear_result11;
|
private Integer clear_result12;
|
private Integer clear_result13;
|
private Integer clear_result14;
|
private Integer clear_result15;
|
private Integer clear_result16;
|
private Integer clear_result17;
|
private Integer clear_result18;
|
private Integer clear_result19;
|
private Integer clear_result20;
|
private Integer clear_result21;
|
private Integer clear_result22;
|
private Integer clear_result23;
|
private Integer clear_result24;
|
private Integer failure_cause1; // 失败原因(1:卡号格式错误,2:清除成功)
|
private Integer failure_cause2;
|
private Integer failure_cause3;
|
private Integer failure_cause4;
|
private Integer failure_cause5;
|
private Integer failure_cause6;
|
private Integer failure_cause7;
|
private Integer failure_cause8;
|
private Integer failure_cause9;
|
private Integer failure_cause10;
|
private Integer failure_cause11;
|
private Integer failure_cause12;
|
private Integer failure_cause13;
|
private Integer failure_cause14;
|
private Integer failure_cause15;
|
private Integer failure_cause16;
|
private Integer failure_cause17;
|
private Integer failure_cause18;
|
private Integer failure_cause19;
|
private Integer failure_cause20;
|
private Integer failure_cause21;
|
private Integer failure_cause22;
|
private Integer failure_cause23;
|
private Integer failure_cause24;
|
}
|