package com.ruoyi.personnel.dto;
|
|
import com.ruoyi.personnel.pojo.PersonRewardPunishmentRecord;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
public class PersonRewardPunishmentRecordDto extends PersonRewardPunishmentRecord {
|
|
private String userName;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime startTime;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime endTime;
|
|
}
|