| | |
| | | @ExcelProperty("负责人部门") |
| | | private String ownerUserDeptName; |
| | | |
| | | @Schema(description = "工作流编号", example = "1043") |
| | | @ExcelProperty("工作流编号") |
| | | private String processInstanceId; |
| | | |
| | | @Schema(description = "审批状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "0") |
| | | @ExcelProperty(value = "审批状态", converter = DictConvert.class) |
| | | @DictFormat(DictTypeConstants.CRM_AUDIT_STATUS) |
| | | private Integer auditStatus; |
| | | |
| | | @Schema(description = "审核人用户编号") |
| | | private Long reviewerId; |
| | | |
| | | @Schema(description = "审核人姓名") |
| | | private String reviewerName; |
| | | |
| | | @Schema(description = "审核时间") |
| | | private LocalDateTime reviewTime; |
| | | |
| | | @Schema(description = "审核意见(审核通过时的意见 / 审核不通过时的原因)") |
| | | private String reviewRemark; |
| | | |
| | | @Schema(description = "备注", example = "备注") |
| | | @ExcelProperty("备注") |
| | |
| | | @Schema(description = "发票附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "是否已上传发票附件", example = "true") |
| | | private Boolean hasAttachment; |
| | | |
| | | @Schema(description = "剩余可回款金额,等于 开票金额 - 该开票已回款金额(草稿+审批中+审批通过)", example = "1000.00") |
| | | private BigDecimal remainingInvoicePrice; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |