无关风月
昨天 27d8f8fbb2e02be63338b80f808969faa35adac0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.ruoyi.system.model.OaApprovalApplicationReimbursementItem;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.List;
 
@Data
@ApiModel(value = "发起报销申请记录DTO")
public class AddReimbursementDTO implements Serializable {
 
    @ApiModelProperty(value = "报销类型 0-差旅招待交通费,1-企业日常采购,2-房租水电日常,3-聚餐团建,4-其他")
    private Integer type;
    @ApiModelProperty(value = "明细")
    private List<OaApprovalApplicationReimbursementItem> items;
 
}