|
|
@ -1,12 +1,9 @@ |
|
|
|
package com.ccsens.ptccsens.bean.vo; |
|
|
|
|
|
|
|
import com.ccsens.ptccsens.bean.dto.FinanceDto; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
@ -116,26 +113,34 @@ public class FinanceVo { |
|
|
|
@Data |
|
|
|
@ApiModel("财务申请详情-发票信息-返回") |
|
|
|
public static class Invoice{ |
|
|
|
@NotNull |
|
|
|
@ApiModelProperty("发票浏览地址") |
|
|
|
private String url; |
|
|
|
@NotNull |
|
|
|
@ApiModelProperty("发票代码") |
|
|
|
private String invoiceCode; |
|
|
|
@NotNull |
|
|
|
@ApiModelProperty("发票号码") |
|
|
|
private String invoiceNumber; |
|
|
|
@NotNull |
|
|
|
@ApiModelProperty("金额,单位:分") |
|
|
|
private Long money; |
|
|
|
@NotNull |
|
|
|
@ApiModelProperty("税额") |
|
|
|
private Long taxMoney; |
|
|
|
@NotNull |
|
|
|
@ApiModelProperty("开票时间") |
|
|
|
private Long invoiceTime; |
|
|
|
@NotNull |
|
|
|
@ApiModelProperty("每张发票备注信息") |
|
|
|
private String remark; |
|
|
|
} |
|
|
|
|
|
|
|
@Data |
|
|
|
@ApiModel("财务-个人历史-返回") |
|
|
|
public static class PersonalHistory{ |
|
|
|
@ApiModelProperty("申请记录id") |
|
|
|
private Long applyId; |
|
|
|
@ApiModelProperty("提交人姓名") |
|
|
|
private String submitName; |
|
|
|
@ApiModelProperty("金额,单位:分") |
|
|
|
private Long money; |
|
|
|
@ApiModelProperty("申请时间") |
|
|
|
private Long submitTime; |
|
|
|
@ApiModelProperty("当前状态:0待审批 1已通过 2已驳回 3待放款 4:放款待确认 5已确认") |
|
|
|
private byte applyType; |
|
|
|
} |
|
|
|
} |
|
|
|