From b6b4fd877da279049542233fc478e200457c4a03 Mon Sep 17 00:00:00 2001 From: hecan <1718492867@qq.com> Date: Wed, 18 Sep 2024 17:08:30 +0800 Subject: [PATCH] =?UTF-8?q?=E9=94=80=E5=94=AE=E8=AE=A2=E5=8D=95=E5=AE=9E?= =?UTF-8?q?=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dgx/oa/entity/SalesOrderEntity.java | 95 +++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 base-buildpackage/src/main/java/com/hzya/frame/plugin/dgx/oa/entity/SalesOrderEntity.java diff --git a/base-buildpackage/src/main/java/com/hzya/frame/plugin/dgx/oa/entity/SalesOrderEntity.java b/base-buildpackage/src/main/java/com/hzya/frame/plugin/dgx/oa/entity/SalesOrderEntity.java new file mode 100644 index 00000000..a2a7398c --- /dev/null +++ b/base-buildpackage/src/main/java/com/hzya/frame/plugin/dgx/oa/entity/SalesOrderEntity.java @@ -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; + } +}