供应商

This commit is contained in:
wangw 2024-06-26 14:21:17 +08:00
parent 6f9afcb246
commit 13c39b5368
1 changed files with 20 additions and 7 deletions

View File

@ -3,25 +3,27 @@ package cn.ysk.cashier.vo;
import lombok.Data;
import java.math.BigDecimal;
import java.math.BigInteger;
/**
* @author lyf
*/
@Data
public class PurveyorTransactVO {
/**
* 上笔进货日期
*/
private BigInteger lastTransactAt;
/**
* 供货商id
*/
private Integer purveyorId;
private Integer id;
/**
* 供货商名称
*/
private String purveyorName;
private String purveyorTelephone;
private String address;
private String remark;
/**
* 上笔进货日期
*/
private Long lastTransactAt;
/**
* 剩余付款金额
*/
@ -29,9 +31,20 @@ public class PurveyorTransactVO {
/**
*待付款笔数
*/
private BigInteger waitCount;
private Long waitCount;
/**
* 0.待支付 1.已完结
*/
private Integer type;
public PurveyorTransactVO(Integer id, String name, String telephone, String address, String remark, Long lastTransactAt, BigDecimal waitAmount, Long waitCount) {
this.id = id;
this.purveyorName = name;
this.purveyorTelephone = telephone;
this.address = address;
this.remark = remark;
this.lastTransactAt = lastTransactAt;
this.waitAmount = waitAmount;
this.waitCount = waitCount;
}
}