| | |
| | | import com.ruoyi.sales.pojo.ReceiptPayment; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class ReceiptPaymentDto extends ReceiptPayment { |
| | | |
| | | @ApiModelProperty(value = "客户合同号") |
| | | @Excel(name = "客户合同号") |
| | | private String customerContractNo; |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | | @Excel(name = "状态") |
| | | private String statusName; |
| | | |
| | | |
| | | @ApiModelProperty(value = "客户名称") |
| | | @Excel(name = "客户名称") |
| | |
| | | |
| | | @ApiModelProperty(value = "销售台账sales_ledger") |
| | | @Excel(isExport = false) |
| | | private Integer salesLedgerId; |
| | | private Long salesLedgerId; |
| | | |
| | | @ApiModelProperty(value = "销售合同号") |
| | | @Excel(name = "销售合同号") |