| | |
| | | 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 org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | private String entryPerson; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "录入人") |
| | | @Schema(description = "录入人") |
| | | @Excel(name = "录入人") |
| | | private String entryPersonName; |
| | | |
| | |
| | | private BigDecimal contractAmount; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "未开票金额(元)") |
| | | @Schema(description = "未开票金额(元)") |
| | | @Excel(name = "未开票金额") |
| | | private BigDecimal noInvoiceAmountTotal = BigDecimal.ZERO; |
| | | |
| | | @ApiModelProperty(value = "签订日期") |
| | | @Schema(description = "签订日期") |
| | | private LocalDate executionDate; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "已开票金额(元)") |
| | | @Schema(description = "已开票金额(元)") |
| | | @Excel(name = "已开票金额") |
| | | private BigDecimal invoiceTotal = BigDecimal.ZERO; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "回款金额") |
| | | @Schema(description = "回款金额") |
| | | private BigDecimal receiptPaymentAmountTotal = BigDecimal.ZERO; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "待回款金额") |
| | | @Schema(description = "待回款金额") |
| | | private BigDecimal noReceiptAmount = BigDecimal.ZERO; |
| | | |
| | | @ApiModelProperty(value = "付款方式") |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "生产状态") |
| | | @Schema(description = "生产状态") |
| | | private String productionStatus = "未开始"; |
| | | |
| | | //交货日期 |
| | | @ApiModelProperty(value = "交货日期") |
| | | @Schema(description = "交货日期") |
| | | @TableField(value = "delivery_date") |
| | | private LocalDate deliveryDate; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "交货天数差") |
| | | @Schema(description = "交货天数差") |
| | | private Integer deliveryDaysDiff; |
| | | |
| | | @TableField(exist = false) |
| | | //是否发货(台账页面颜色控制) |
| | | private Boolean isFh; |
| | | |
| | | @TableField(exist = false) |
| | | //是否可编辑 |
| | | private Boolean isEdit; |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "是否有生产记录") |
| | | @TableField(exist = false) |
| | | private Boolean hasProductionRecord; |
| | | |
| | | } |
| | | |