package com.zy.asrs.wms.asrs.entity.statistics; import com.baomidou.mybatisplus.annotation.TableName; import com.zy.asrs.wms.asrs.entity.LocDetl; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import java.util.Date; @EqualsAndHashCode(callSuper = true) @Data @TableName("view_stay_time") public class ViewStayTime extends LocDetl { @ApiModelProperty(value= "当前时间") private Date today; @ApiModelProperty(value= "滞留天数") private Integer stayTime; }