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

zhangshaowu / pipi-helper

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
  • pipi-helper
  • ..
  • model
  • DateRuleModel.java
  • zhangshaowu's avatar
    排班信息 · 9c1b8099
    zhangshaowu committed Oct 14, 2022
    9c1b8099
DateRuleModel.java 390 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 24 25 26
package com.pipihelper.project.rostering.model;

import lombok.Data;

import java.util.Date;

/**
 * 指定日期内出现X个N班次
 * (x=数字  n=班次名称)
 * @description: 时间规则配置
 * @author: zsw
 * @create: 2022-10-14 18:48
 **/
@Data
public class DateRuleModel {

    /**
     *
     */
    private Date date;

    private String shift;

    private Integer times;

}