| 12345678910111213141516171819202122232425262728293031323334353637 | package com.welampiot.vo;import lombok.Data;import java.io.Serializable;/** * ClassName: PatrolCheckPlanInfoVO * Package: com.welampiot.vo * Description: * * @Author: zhj_Start * @Create: 2023/7/3 - 11:06 * @Version: v1.0 */@Datapublic class PatrolCheckPlanInfoVO implements Serializable {    private Integer id;    private Integer sectionId;    private Integer count; // 抽查次数    private String checkBeginTime; // 计划开始时间    private String checkEndTime; // 计划结束时间    private Integer comCount; // 实际抽查次数    private String createTime;    private Integer createId; // 创建人员    private String number; // 巡视计划编号    private static final long serialVersionUID = 1L;}
 |