Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in

朱海 / VVAS-PicGroup

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • VVAS-PicGroup
  • ..
  • entity
  • DateTimeParam.java
  • 朱海's avatar
    [chg]d_person_record记录生成按照营业时间过滤 · 6f4b0fab
    朱海 committed Aug 08, 2024
    6f4b0fab Browse Files
DateTimeParam.java 332 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.viontech.keliu.entity;

import lombok.Data;

import java.util.Date;

/**
 * Created with IntelliJ IDEA.
 *
 * @author: zhuhai
 * Date: 2023-03-23
 * Time: 10:50
 */
@Data
public class DateTimeParam {

    private Date startDate;
    private Date endDate;

    private Date startDateTime;

    private Date endDateTime;
}