package com.ruoyi.integration.api.model;
|
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
/**
|
* 计费模型验证请求应答
|
**/
|
|
@Data
|
@Document(collection = "billing_mode_verify_reply") //指定要对应的文档名(表名)
|
@Accessors(chain = true)
|
public class BillingModeVerifyReply extends BaseModel {
|
private String charging_pile_code; // 桩编
|
private String billing_model_code; // 计费模型编
|
private Integer billing_model_result; // 验证结果(0:桩计费模型与平台一致,1:桩计费模型与平台不一致)
|
|
|
}
|