luodangjia
2024-10-08 4c96637a005891c709662ae84edd072ad9a4a57d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 = "qr_code_delivery_reply") //指定要对应的文档名(表名)
@Accessors(chain = true)
public class QrCodeDeliveryReply {
 
    @Id
    private String charging_pile_code; // 桩编码
    private Integer delivery_result; // 设置结果(0:成功,1:失败)
 
}