finacial_daily_accountitem.java

来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 477 行

JAVA
477
字号
package com.vere.finacial.item;	import java.io.*;	import com.vere.dictionary.item.*;	public class Finacial_daily_accountItem implements Serializable	{		private String id;//		private String in_date;//日期		private String caurse;//事由		private String dictionary_finacial_id1;//分类		private  Dictionary_finacialItem dictionary_finacialItem1;//分类		private String dictionary_finacial_id2;//事项		private  Dictionary_finacialItem dictionary_finacialItem2;//事项		private String dictionary_finacial_id3;//明细		private  Dictionary_finacialItem dictionary_finacialItem3;//明细		private String instruction;//摘要		private String in_price;//收入金额		private String out_price;//付出金额		private String back_price;//返回金额		private String remain_price;//余额		private String deal_people;//经手人		private String memo;//备注		private String register_date;//登记日期		private String register_username;//登记用户		private String register_name;//登记人		private String register_department_id;//登记部门编号		private String register_department_nodepath;//登记部门路径		private String register_department;//登记部门		private String register_area_id;//登记地区编号		private String register_area_nodepath;//登记地区路径		private String register_area;//登记地区		private String in_company;//交款单位		public Finacial_daily_accountItem()		{		}		/**		 * @see			 */		public String getId()		{			if(this.id==null)				this.id="";			return this.id;		}		/**		 * @see			 */		public void setId(String id)		{			this.id=id;		}		/**		 * @see	日期		 */		public String getIn_date()		{			if(this.in_date==null)				this.in_date="";			return this.in_date;		}		/**		 * @see	日期		 */		public void setIn_date(String in_date)		{			this.in_date=in_date;		}		/**		 * @see	事由		 */		public String getCaurse()		{			if(this.caurse==null)				this.caurse="";			return this.caurse;		}		/**		 * @see	事由		 */		public void setCaurse(String caurse)		{			this.caurse=caurse;		}		/**		 * @see	分类		 */		public String getDictionary_finacial_id1()		{			if(this.dictionary_finacial_id1==null)				this.dictionary_finacial_id1="";			return this.dictionary_finacial_id1;		}		/**		 * @see	分类		 */		public void setDictionary_finacial_id1(String dictionary_finacial_id1)		{			this.dictionary_finacial_id1=dictionary_finacial_id1;		}		/**		 * @see	分类		 */		public Dictionary_finacialItem getDictionary_finacialItem1()		{			return this.dictionary_finacialItem1;		}		/**		 * @see	分类		 */		public void setDictionary_finacialItem1(Dictionary_finacialItem dictionary_finacialItem1)		{			this.dictionary_finacialItem1=dictionary_finacialItem1;		}		/**		 * @see	事项		 */		public String getDictionary_finacial_id2()		{			if(this.dictionary_finacial_id2==null)				this.dictionary_finacial_id2="";			return this.dictionary_finacial_id2;		}		/**		 * @see	事项		 */		public void setDictionary_finacial_id2(String dictionary_finacial_id2)		{			this.dictionary_finacial_id2=dictionary_finacial_id2;		}		/**		 * @see	事项		 */		public Dictionary_finacialItem getDictionary_finacialItem2()		{			return this.dictionary_finacialItem2;		}		/**		 * @see	事项		 */		public void setDictionary_finacialItem2(Dictionary_finacialItem dictionary_finacialItem2)		{			this.dictionary_finacialItem2=dictionary_finacialItem2;		}		/**		 * @see	明细		 */		public String getDictionary_finacial_id3()		{			if(this.dictionary_finacial_id3==null)				this.dictionary_finacial_id3="";			return this.dictionary_finacial_id3;		}		/**		 * @see	明细		 */		public void setDictionary_finacial_id3(String dictionary_finacial_id3)		{			this.dictionary_finacial_id3=dictionary_finacial_id3;		}		/**		 * @see	明细		 */		public Dictionary_finacialItem getDictionary_finacialItem3()		{			return this.dictionary_finacialItem3;		}		/**		 * @see	明细		 */		public void setDictionary_finacialItem3(Dictionary_finacialItem dictionary_finacialItem3)		{			this.dictionary_finacialItem3=dictionary_finacialItem3;		}		/**		 * @see	摘要		 */		public String getInstruction()		{			if(this.instruction==null)				this.instruction="";			return this.instruction;		}		/**		 * @see	摘要		 */		public void setInstruction(String instruction)		{			this.instruction=instruction;		}		/**		 * @see	收入金额		 */		public String getIn_price()		{			if(this.in_price==null)				this.in_price="";			return this.in_price;		}		/**		 * @see	收入金额		 */		public void setIn_price(String in_price)		{			this.in_price=in_price;		}		/**		 * @see	付出金额		 */		public String getOut_price()		{			if(this.out_price==null)				this.out_price="";			return this.out_price;		}		/**		 * @see	付出金额		 */		public void setOut_price(String out_price)		{			this.out_price=out_price;		}		/**		 * @see	返回金额		 */		public String getBack_price()		{			if(this.back_price==null)				this.back_price="";			return this.back_price;		}		/**		 * @see	返回金额		 */		public void setBack_price(String back_price)		{			this.back_price=back_price;		}		/**		 * @see	余额		 */		public String getRemain_price()		{			if(this.remain_price==null)				this.remain_price="";			return this.remain_price;		}		/**		 * @see	余额		 */		public void setRemain_price(String remain_price)		{			this.remain_price=remain_price;		}		/**		 * @see	经手人		 */		public String getDeal_people()		{			if(this.deal_people==null)				this.deal_people="";			return this.deal_people;		}		/**		 * @see	经手人		 */		public void setDeal_people(String deal_people)		{			this.deal_people=deal_people;		}		/**		 * @see	备注		 */		public String getMemo()		{			if(this.memo==null)				this.memo="";			return this.memo;		}		/**		 * @see	备注		 */		public void setMemo(String memo)		{			this.memo=memo;		}		/**		 * @see	登记日期		 */		public String getRegister_date()		{			if(this.register_date==null)				this.register_date="";			return this.register_date;		}		/**		 * @see	登记日期		 */		public void setRegister_date(String register_date)		{			this.register_date=register_date;		}		/**		 * @see	登记用户		 */		public String getRegister_username()		{			if(this.register_username==null)				this.register_username="";			return this.register_username;		}		/**		 * @see	登记用户		 */		public void setRegister_username(String register_username)		{			this.register_username=register_username;		}		/**		 * @see	登记人		 */		public String getRegister_name()		{			if(this.register_name==null)				this.register_name="";			return this.register_name;		}		/**		 * @see	登记人		 */		public void setRegister_name(String register_name)		{			this.register_name=register_name;		}		/**		 * @see	登记部门编号		 */		public String getRegister_department_id()		{			if(this.register_department_id==null)				this.register_department_id="";			return this.register_department_id;		}		/**		 * @see	登记部门编号		 */		public void setRegister_department_id(String register_department_id)		{			this.register_department_id=register_department_id;		}		/**		 * @see	登记部门路径		 */		public String getRegister_department_nodepath()		{			if(this.register_department_nodepath==null)				this.register_department_nodepath="";			return this.register_department_nodepath;		}		/**		 * @see	登记部门路径		 */		public void setRegister_department_nodepath(String register_department_nodepath)		{			this.register_department_nodepath=register_department_nodepath;		}		/**		 * @see	登记部门		 */		public String getRegister_department()		{			if(this.register_department==null)				this.register_department="";			return this.register_department;		}		/**		 * @see	登记部门		 */		public void setRegister_department(String register_department)		{			this.register_department=register_department;		}		/**		 * @see	登记地区编号		 */		public String getRegister_area_id()		{			if(this.register_area_id==null)				this.register_area_id="";			return this.register_area_id;		}		/**		 * @see	登记地区编号		 */		public void setRegister_area_id(String register_area_id)		{			this.register_area_id=register_area_id;		}		/**		 * @see	登记地区路径		 */		public String getRegister_area_nodepath()		{			if(this.register_area_nodepath==null)				this.register_area_nodepath="";			return this.register_area_nodepath;		}		/**		 * @see	登记地区路径		 */		public void setRegister_area_nodepath(String register_area_nodepath)		{			this.register_area_nodepath=register_area_nodepath;		}		/**		 * @see	登记地区		 */		public String getRegister_area()		{			if(this.register_area==null)				this.register_area="";			return this.register_area;		}		/**		 * @see	登记地区		 */		public void setRegister_area(String register_area)		{			this.register_area=register_area;		}				/**		 * @see	交款单位		 */		public String getIn_company()		{			if(this.in_company==null)				this.in_company="";			return this.in_company;		}		/**		 * @see	交款单位		 */		public void setIn_company(String in_company)		{			this.in_company=in_company;		}}

⌨️ 快捷键说明

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