销售订单实体
This commit is contained in:
parent
9fbfa51c52
commit
b6b4fd877d
|
@ -0,0 +1,95 @@
|
|||
package com.hzya.frame.plugin.dgx.oa.entity;
|
||||
|
||||
import com.hzya.frame.web.entity.BaseEntity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @content 销售订单
|
||||
* @Param
|
||||
* @Return
|
||||
* @Author hecan
|
||||
* @Date 2024-09-06 11:52
|
||||
* **/
|
||||
public class SalesOrderEntity extends BaseEntity {
|
||||
private String orgCode;//组织
|
||||
private String documentType;//单据类型
|
||||
private String docNo;//单号
|
||||
private String orderBy;//客户
|
||||
private String businessDate;//日期
|
||||
private String saleDepartment;//部门
|
||||
private String seller;//业务员
|
||||
private String isPriceIncludeTax;//价格是否含税
|
||||
private String memo;//备注
|
||||
|
||||
public String getOrgCode() {
|
||||
return orgCode;
|
||||
}
|
||||
|
||||
public void setOrgCode(String orgCode) {
|
||||
this.orgCode = orgCode;
|
||||
}
|
||||
|
||||
public String getDocumentType() {
|
||||
return documentType;
|
||||
}
|
||||
|
||||
public void setDocumentType(String documentType) {
|
||||
this.documentType = documentType;
|
||||
}
|
||||
|
||||
public String getDocNo() {
|
||||
return docNo;
|
||||
}
|
||||
|
||||
public void setDocNo(String docNo) {
|
||||
this.docNo = docNo;
|
||||
}
|
||||
|
||||
public String getOrderBy() {
|
||||
return orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(String orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getBusinessDate() {
|
||||
return businessDate;
|
||||
}
|
||||
|
||||
public void setBusinessDate(String businessDate) {
|
||||
this.businessDate = businessDate;
|
||||
}
|
||||
|
||||
public String getSaleDepartment() {
|
||||
return saleDepartment;
|
||||
}
|
||||
|
||||
public void setSaleDepartment(String saleDepartment) {
|
||||
this.saleDepartment = saleDepartment;
|
||||
}
|
||||
|
||||
public String getSeller() {
|
||||
return seller;
|
||||
}
|
||||
|
||||
public void setSeller(String seller) {
|
||||
this.seller = seller;
|
||||
}
|
||||
|
||||
public String getIsPriceIncludeTax() {
|
||||
return isPriceIncludeTax;
|
||||
}
|
||||
|
||||
public void setIsPriceIncludeTax(String isPriceIncludeTax) {
|
||||
this.isPriceIncludeTax = isPriceIncludeTax;
|
||||
}
|
||||
|
||||
public String getMemo() {
|
||||
return memo;
|
||||
}
|
||||
|
||||
public void setMemo(String memo) {
|
||||
this.memo = memo;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue