linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
src/main/java/org/springblade/modules/checkInRecords/vo/CheckInRecordsVO.java
@@ -16,10 +16,10 @@
 */
package org.springblade.modules.checkInRecords.vo;
import org.springblade.modules.checkInRecords.entity.CheckInRecordsEntity;
import org.springblade.core.tool.node.INode;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.modules.checkInRecords.entity.CheckInRecordsEntity;
/**
 * 打卡记录表 视图实体类
@@ -32,4 +32,26 @@
public class CheckInRecordsVO extends CheckInRecordsEntity {
   private static final long serialVersionUID = 1L;
   private String name;
   /**
    * 开始时间
    */
   private String startTime;
   /**
    * 结束时间
    */
   private String endTime;
   private String deptId;
   // 角色名称
   @ApiModelProperty(value = "角色名称", example = "")
   private String roleName;
   // 社区编号
   @ApiModelProperty(value = "社区编号", example = "")
   private String communityCode;
}