myjf007
2024-11-04 627b61d17da1dbf02c0363c659b728627dd42890
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.nova.sankuai.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/3/11
 */
@Data
@ApiModel(value = "订单支付日志记录")
public class PayOrderLogDto {
 
    @ApiModelProperty(value = "用户手机号")
    private String phone;
 
    @ApiModelProperty(value = "用户姓名")
    private String name;
 
    @ApiModelProperty(value = "操作明细")
    private String operation;
 
    @ApiModelProperty(value = "操作时间")
    private Long operationDate;
 
    @ApiModelProperty(value = "硬件设备信息")
    private String device;
 
}