zss
2024-04-16 c219f11b51903d5aeb4c7ca261df593597aa7fe2
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
package com.yuanchu.mom.dto;
 
import com.yuanchu.mom.annotation.ValueTableShow;
import com.yuanchu.mom.common.OrderBy;
import com.yuanchu.mom.pojo.InsReport;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
 
import javax.validation.constraints.Size;
import java.io.Serializable;
 
@Data
public class ReportPageDto extends InsReport implements Serializable {
 
    @ValueTableShow(2)
    @ApiModelProperty(value = "委托编号")
    private String entrustCode;
 
    @ValueTableShow(value = 3,name = "提交人")
    private String writeUserName;
 
    @ValueTableShow(value = 10,name = "批准人")
    private String ratifyUser;
 
    @ValueTableShow(value = 6,name = "审核人")
    private String examineUser;
 
}