mitao
15 小时以前 7c0a8a91ae6d1c684e7a358929f4bd04f3f4bfe8
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.ruoyi.system.vo.asset;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDate;
 
/**
 * 审批通过资产分页视图对象
 */
@Data
@ApiModel("审批通过资产分页视图对象")
public class AssetMainPageVO implements Serializable {
    private static final long serialVersionUID = -1287342342234234234L;
 
    @ApiModelProperty(value = "资产ID")
    private Integer id;
 
    @ApiModelProperty(value = "资产编码")
    private String assetCode;
 
    @ApiModelProperty(value = "资产名称")
    private String assetName;
 
    @ApiModelProperty(value = "资产类型")
    private String assetTypeName;
 
    @ApiModelProperty(value = "归属部门")
    private String ownershipDeptName;
 
    @ApiModelProperty(value = "资产状态")
    private String assetStatus;
 
    @ApiModelProperty(value = "入库时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate storageTime;
 
    @ApiModelProperty(value = "使用部门/位置")
    private String useDeptOrLocation;
}