parent
3eceda3c3b
commit
a3bffef9eb
@ -0,0 +1,82 @@
|
||||
|
||||
package model;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
public class OutboundRecord {
|
||||
private String id;
|
||||
private String goodsId;
|
||||
private int quantity;
|
||||
private String customer;
|
||||
private LocalDateTime outboundTime;
|
||||
private String operator;
|
||||
private String remark;
|
||||
|
||||
public OutboundRecord(String id, String goodsId, int quantity, String customer,
|
||||
LocalDateTime outboundTime, String operator, String remark) {
|
||||
this.id = id;
|
||||
this.goodsId = goodsId;
|
||||
this.quantity = quantity;
|
||||
this.customer = customer;
|
||||
this.outboundTime = outboundTime;
|
||||
this.operator = operator;
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
// Getters and Setters
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getGoodsId() {
|
||||
return goodsId;
|
||||
}
|
||||
|
||||
public void setGoodsId(String goodsId) {
|
||||
this.goodsId = goodsId;
|
||||
}
|
||||
|
||||
public int getQuantity() {
|
||||
return quantity;
|
||||
}
|
||||
|
||||
public void setQuantity(int quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
|
||||
public String getCustomer() {
|
||||
return customer;
|
||||
}
|
||||
|
||||
public void setCustomer(String customer) {
|
||||
this.customer = customer;
|
||||
}
|
||||
|
||||
public LocalDateTime getOutboundTime() {
|
||||
return outboundTime;
|
||||
}
|
||||
|
||||
public void setOutboundTime(LocalDateTime outboundTime) {
|
||||
this.outboundTime = outboundTime;
|
||||
}
|
||||
|
||||
public String getOperator() {
|
||||
return operator;
|
||||
}
|
||||
|
||||
public void setOperator(String operator) {
|
||||
this.operator = operator;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue