| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | /** |
| | | * 附件材料路径或名称 |
| | | */ |
| | | @Excel(name = "附件材料路径或名称") |
| | | // @Excel(name = "附件材料路径或名称") |
| | | private String attachmentMaterials; |
| | | |
| | | /** |
| | |
| | | private String phoneNumber; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("来票金额") |
| | | @Schema(description = "来票金额") |
| | | private String receiptPaymentAmount; |
| | | |
| | | @ApiModelProperty("未来票金额") |
| | | @Schema(description = "未来票金额") |
| | | @TableField(exist = false) |
| | | private String unReceiptPaymentAmount; |
| | | |
| | | @ApiModelProperty("文件类型 取 4") |
| | | @Schema(description = "文件类型 取 4") |
| | | @TableField(exist = false) |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "付款方式") |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | @ApiModelProperty("审批状态 1-待审核,2-审批中,3-审批通过,4-审批失败,5表示是模板") |
| | | @Schema(description = "审批状态 1-待审核,2-审批中,3-审批通过,4-审批失败,5表示是模板") |
| | | @Excel(name = "审批状态", readConverterExp = "1=待审核,2=审批中,3=审批通过,4=审批失败") |
| | | private Integer approvalStatus; |
| | | |
| | | @ApiModelProperty(value = "模板名称") |
| | | @Schema(description = "模板名称") |
| | | private String templateName; |
| | | @ApiModelProperty(value = "审批人id") |
| | | @Schema(description = "审批人id") |
| | | private String approveUserIds; |
| | | |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | } |