fwq
2022-07-22 f5bce1128a4b9c8ccc0eb636747d060ce93e3135
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.user;
7c680b 2
C 3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
6 /**用户预约数据扩展*/
7 @Data
f5bce1 8 public class UserAppointmentDto extends PageDto {
7c680b 9     /**用户标识*/
C 10     private String userId;
11    /**状态:1已完成*/
82a7ec 12    private Integer isArrive;
7c680b 13
C 14 }