⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 countinventorybillinfo.java

📁 《j2ee开发全程实录》随书源码
💻 JAVA
字号:
package com.cownew.PIS.inv.common;
import com.cownew.PIS.framework.common.*;
import com.cownew.PIS.basedata.common.*;
import java.util.*;
import java.math.*;
import java.sql.*;

public class CountInventoryBillInfo  extends AbstractValueObject
{   
   private String id;      
   private String number;      
   private java.sql.Date createDate;      
   private java.sql.Date countDate;      
   private java.sql.Date accountDate;      
   private PersonInfo operator;      
   private String billState;      
   private String description;      
   private Set details;      
   private String countType;   
   
   public void setId(String value)
   {
     this.id=value;
   }
   
   
   public void setNumber(String value)
   {
     this.number=value;
   }
   
   
   public void setCreateDate(java.sql.Date value)
   {
     this.createDate=value;
   }
   
   
   public void setCountDate(java.sql.Date value)
   {
     this.countDate=value;
   }
   
   
   public void setAccountDate(java.sql.Date value)
   {
     this.accountDate=value;
   }
   
   
   public void setOperator(PersonInfo value)
   {
     this.operator=value;
   }
   
   
   public void setBillState(String value)
   {
     this.billState=value;
   }
   
   
   public void setDescription(String value)
   {
     this.description=value;
   }
   
   
   public void setDetails(Set value)
   {
     this.details=value;
   }
   
   
   public void setCountType(String value)
   {
     this.countType=value;
   }
   
   
   public String getId()
   {
     return id;
   }
   
   
   public String getNumber()
   {
     return number;
   }
   
   
   public java.sql.Date getCreateDate()
   {
     return createDate;
   }
   
   
   public java.sql.Date getCountDate()
   {
     return countDate;
   }
   
   
   public java.sql.Date getAccountDate()
   {
     return accountDate;
   }
   
   
   public PersonInfo getOperator()
   {
     return operator;
   }
   
   
   public String getBillState()
   {
     return billState;
   }
   
   
   public String getDescription()
   {
     return description;
   }
   
   
   public Set getDetails()
   {
     return details;
   }
   
   
   public String getCountType()
   {
     return countType;
   }
      
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -