rk
昨天 4ee00850f197d769481f73acb8ed79ab1c75b84d
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
31
32
package com.doumee.dao.business.dto;
 
import com.doumee.service.business.third.model.LoginUserModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/10/11 16:01
 */
@Data
public class JDYKeyUseByBookDTO{
 
    @ApiModelProperty(value = "操作时间")
    private Long create_date;
 
    @ApiModelProperty(value = "领用时间")
    private Long start_date;
 
    @ApiModelProperty(value = "归还时间")
    private Long end_date;
 
    @ApiModelProperty(value = "操作类型:0=领用;1=归还;")
    private Integer type;
 
    @ApiModelProperty(value = "派车单 no单号")
    private String id;
 
 
}