gonglilong
2024-08-26 2c89f5c73fb364f2510d9fb4c8407395b4f959f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.gistack.sm.sg.VO;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class SgStepReportVO {
private Long    stepId;
private String    stepName;
private Integer    approvalStatus;
private String     stepNum;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date reportTime;
private Integer resubmit;
}