shenyijian
2024-06-18 18d0f722b1c569c881a897c8f2f50f50d624fe11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}