zouyu
2026-04-21 b5d5b7676c92eee961ca34259848bfcb97115c7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
 
}