| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "发货单据(文本)") |
| | | @Excel(name = "发货单据") |
| | | private String shippingDocument; |
| | | |
| | | @Schema(description = "是否对账(勾选框,0否 1是)") |
| | | @Excel(name = "是否对账") |
| | | private Integer isReconciled; |
| | | |
| | | @Schema(description = "对账单归档情况(文本域)") |
| | | @Excel(name = "对账单归档情况") |
| | | private String statementArchivingStatus; |
| | | |
| | | @Schema(description = "是否结算(勾选框,0否 1是)") |
| | | @Excel(name = "是否结算") |
| | | private Integer isSettled; |
| | | |
| | | @Schema(description = "结算单归档情况(文本域)") |
| | | @Excel(name = "结算单归档情况") |
| | | private String settlementArchivingStatus; |
| | | |
| | | @Schema(description = "是否已开票(勾选框,0否 1是)") |
| | | @Excel(name = "是否已开票") |
| | | private Integer isInvoiced; |
| | | |
| | | @Schema(description = "项目ID") |
| | | private Long projectId; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "项目名称") |
| | | @Excel(name = "项目名称") |
| | | private String projectName; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "开始发货日期") |
| | | private String beginShippingDate; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "结束发货日期") |
| | | private String endShippingDate; |
| | | } |