liusheng
2024-03-20 d91dfa2b823f6644f1e58dd4770f57e0d0cef08f
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
package com.ruoyi.project.domain;
 
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 费用申请主对象 service_fund
 *
 * @author ruoyi
 * @date 2022-01-24
 */
@Data
@ApiModel("费用申请主")
public class PdfMegerVO extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
 
    @ApiModelProperty("id")
    private Long id;
 
    /**
     * 模块 :差旅 1   费用 2
     */
    @ApiModelProperty("模块 :差旅 1   费用 2")
    private Integer type;
}