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; }