| | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.sales.pojo.CommonFile; |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | |
| | | @Data |
| | | public class PurchaseLedgerDto { |
| | | /** |
| | | * 审批人id列表 |
| | | */ |
| | | @Schema(description = "审批人id列表") |
| | | private String approveUserIds; |
| | | |
| | | |
| | | |
| | | private String entryDateStart; |
| | |
| | | */ |
| | | @Excel(name = "供应商名称") |
| | | private String supplierName; |
| | | /** |
| | | * 是否白名单 |
| | | */ |
| | | @Excel(name = "是否白名单") |
| | | private Integer isWhite; |
| | | |
| | | /** |
| | | * 录入人姓名id |
| | |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("来票金额") |
| | | @Schema(description = "来票金额") |
| | | @Excel(name = "已来票金额(元)") |
| | | private BigDecimal receiptPaymentAmount = BigDecimal.ZERO; |
| | | |
| | | @ApiModelProperty("未来票金额") |
| | | @Schema(description = "未来票金额") |
| | | @TableField(exist = false) |
| | | @Excel(name = "未来票金额(元)") |
| | | private BigDecimal unReceiptPaymentAmount =BigDecimal.ZERO; |
| | | |
| | | @ApiModelProperty("文件类型 取 4") |
| | | @Schema(description = "文件类型 取 4") |
| | | @TableField(exist = false) |
| | | private Integer type; |
| | | |
| | | |
| | | @ApiModelProperty(value = "付款方式") |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | |
| | | @Schema(description = "审批状态") |
| | | private Integer approvalStatus; |
| | | @Schema(description = "模板名称") |
| | | private String templateName; |
| | | @Schema(description = "审批人id") |
| | | private Integer approverId; |
| | | } |