|
|
@@ -0,0 +1,144 @@
|
|
|
+package com.usoftchina.saas.document.po;
|
|
|
+
|
|
|
+import com.usoftchina.saas.base.entity.CommonBaseEntity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 仓库资料
|
|
|
+ * @author chenwei
|
|
|
+ * @Date 2018/10/16
|
|
|
+ */
|
|
|
+public class Warehouse extends CommonBaseEntity implements Serializable {
|
|
|
+
|
|
|
+ private long wh_id;
|
|
|
+ private String wh_code;
|
|
|
+ private String wh_type;
|
|
|
+ private String wh_description;
|
|
|
+ private String wh_statuscode;
|
|
|
+ private String wh_status;
|
|
|
+ private long wh_recordid;
|
|
|
+ private String wh_recorder;
|
|
|
+ /**
|
|
|
+ * 录入日期
|
|
|
+ */
|
|
|
+ private Date wh_date;
|
|
|
+ private String wh_text1;
|
|
|
+ private String wh_text2;
|
|
|
+ private String wh_text3;
|
|
|
+ private String wh_text4;
|
|
|
+ private String wh_text5;
|
|
|
+
|
|
|
+ public long getWh_id() {
|
|
|
+ return wh_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_id(long wh_id) {
|
|
|
+ this.wh_id = wh_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_code() {
|
|
|
+ return wh_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_code(String wh_code) {
|
|
|
+ this.wh_code = wh_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_type() {
|
|
|
+ return wh_type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_type(String wh_type) {
|
|
|
+ this.wh_type = wh_type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_description() {
|
|
|
+ return wh_description;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_description(String wh_description) {
|
|
|
+ this.wh_description = wh_description;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_statuscode() {
|
|
|
+ return wh_statuscode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_statuscode(String wh_statuscode) {
|
|
|
+ this.wh_statuscode = wh_statuscode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_status() {
|
|
|
+ return wh_status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_status(String wh_status) {
|
|
|
+ this.wh_status = wh_status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getWh_recordid() {
|
|
|
+ return wh_recordid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_recordid(long wh_recordid) {
|
|
|
+ this.wh_recordid = wh_recordid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_recorder() {
|
|
|
+ return wh_recorder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_recorder(String wh_recorder) {
|
|
|
+ this.wh_recorder = wh_recorder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getWh_date() {
|
|
|
+ return wh_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_date(Date wh_date) {
|
|
|
+ this.wh_date = wh_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_text1() {
|
|
|
+ return wh_text1;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_text1(String wh_text1) {
|
|
|
+ this.wh_text1 = wh_text1;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_text2() {
|
|
|
+ return wh_text2;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_text2(String wh_text2) {
|
|
|
+ this.wh_text2 = wh_text2;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_text3() {
|
|
|
+ return wh_text3;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_text3(String wh_text3) {
|
|
|
+ this.wh_text3 = wh_text3;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_text4() {
|
|
|
+ return wh_text4;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_text4(String wh_text4) {
|
|
|
+ this.wh_text4 = wh_text4;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWh_text5() {
|
|
|
+ return wh_text5;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWh_text5(String wh_text5) {
|
|
|
+ this.wh_text5 = wh_text5;
|
|
|
+ }
|
|
|
+}
|