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
  • RosteringModel.java
  • zhangshaowu's avatar
    init · df011e1f
    zhangshaowu committed Oct 14, 2022
    df011e1f
RosteringModel.java 371 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 27 28 29 30
package com.pipihelper.project.rostering.model;

import lombok.Data;

import java.util.Date;

/**
 * @description:
 * @author: zsw
 * @create: 2022-10-14 16:52
 **/
@Data
public class RosteringModel {

    /**
     * 名字
     */
    private String name;

    /**
     * 班次
     */
    private String shift;

    /**
     * 时间
     */
    private Date date;

}