| | |
| | | @Column(columnDefinition = "decimal(10,0) comment '开票通知在 个工作日内 一煤机采购合同用'") |
| | | private BigDecimal invoiceNotice; |
| | | |
| | | /** |
| | | * 临时字段 - 用于接收审批人名称等关联查询结果 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String approverName; |
| | | /** |
| | | * 标的物 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private List<ContractSubjectMatter> contractSubjectMatterList; |
| | | |
| | | |
| | | /** |
| | | * 收款阶段 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private List<ContractPaymentSchedule> contractPaymentScheduleList; |
| | | |
| | | /** |
| | | * 临时字段 - 合同剩余天数 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private Long remainingDays; |
| | | @Schema(description = "合同总价税率") |
| | | @Column(columnDefinition = "decimal(10,2) comment '开票通知在 个工作日内 一煤机采购合同用'") |
| | | private BigDecimal contractTax; |
| | | |
| | | } |