首页>代码>java web开发无纸化办公管理系统>/Colin/src/wjb/bean/CheckGoods.java
/**
 * @新建类文件:CheckGoods.java
 * @说明:暂无
 */
package wjb.bean;

/**
 * @描述:请购申请信息、审批信息
 * @说明:暂无
 * @版权:Copyright © 2017 colin. All Rights Reserved.
 * @作者:吴江波
 * @版本:1.0
 * @创建日期:2017-10-9
 * @创建时间:下午12:18:02
 * @所属包名:wjb.bean
 * @类的名称:CheckGoods.java
 */
public class CheckGoods {
	private String request_goods_id;
	private String create_time;
	private String create_user;
	private String create_user_name;
	private String goods_name;
	private String goods_desc;
	private double goods_count;
	private String goods_unit;
	private String need_time;
	private String applicant_dep;
	private String applicant_dep_name;
	private String purpose_desc;

	private String check_id;
	private String record_id;
	private String auditor_id;
	private String auditor_id_name;
	private String audit_opinion;
	private String audit_state;// 审核状态(1:审核中;2:审核通过;3:审核不通过)
	private String audit_time;
	private String apply_type;// 申请类型(1:请购申请)

	/**
	 * @描述:构造方法
	 * @说明:暂无
	 */
	public CheckGoods() {
		super();
		// TODO Auto-generated constructor stub
	}

	/**
	 * @return the request_goods_id
	 */
	public String getRequest_goods_id() {
		return request_goods_id;
	}

	/**
	 * @param request_goods_id
	 *            the request_goods_id to set
	 */
	public void setRequest_goods_id(String request_goods_id) {
		this.request_goods_id = request_goods_id;
	}

	/**
	 * @return the create_time
	 */
	public String getCreate_time() {
		return create_time;
	}

	/**
	 * @param create_time
	 *            the create_time to set
	 */
	public void setCreate_time(String create_time) {
		this.create_time = create_time;
	}

	/**
	 * @return the create_user
	 */
	public String getCreate_user() {
		return create_user;
	}

	/**
	 * @param create_user
	 *            the create_user to set
	 */
	public void setCreate_user(String create_user) {
		this.create_user = create_user;
	}

	/**
	 * @return the create_user_name
	 */
	public String getCreate_user_name() {
		return create_user_name;
	}

	/**
	 * @param create_user_name
	 *            the create_user_name to set
	 */
	public void setCreate_user_name(String create_user_name) {
		this.create_user_name = create_user_name;
	}

	/**
	 * @return the goods_name
	 */
	public String getGoods_name() {
		return goods_name;
	}

	/**
	 * @param goods_name
	 *            the goods_name to set
	 */
	public void setGoods_name(String goods_name) {
		this.goods_name = goods_name;
	}

	/**
	 * @return the goods_desc
	 */
	public String getGoods_desc() {
		return goods_desc;
	}

	/**
	 * @param goods_desc
	 *            the goods_desc to set
	 */
	public void setGoods_desc(String goods_desc) {
		this.goods_desc = goods_desc;
	}

	/**
	 * @return the goods_count
	 */
	public double getGoods_count() {
		return goods_count;
	}

	/**
	 * @param goods_count
	 *            the goods_count to set
	 */
	public void setGoods_count(double goods_count) {
		this.goods_count = goods_count;
	}

	/**
	 * @return the goods_unit
	 */
	public String getGoods_unit() {
		return goods_unit;
	}

	/**
	 * @param goods_unit
	 *            the goods_unit to set
	 */
	public void setGoods_unit(String goods_unit) {
		this.goods_unit = goods_unit;
	}

	/**
	 * @return the need_time
	 */
	public String getNeed_time() {
		return need_time;
	}

	/**
	 * @param need_time
	 *            the need_time to set
	 */
	public void setNeed_time(String need_time) {
		this.need_time = need_time;
	}

	/**
	 * @return the applicant_dep
	 */
	public String getApplicant_dep() {
		return applicant_dep;
	}

	/**
	 * @param applicant_dep
	 *            the applicant_dep to set
	 */
	public void setApplicant_dep(String applicant_dep) {
		this.applicant_dep = applicant_dep;
	}

	/**
	 * @return the applicant_dep_name
	 */
	public String getApplicant_dep_name() {
		return applicant_dep_name;
	}

	/**
	 * @param applicant_dep_name
	 *            the applicant_dep_name to set
	 */
	public void setApplicant_dep_name(String applicant_dep_name) {
		this.applicant_dep_name = applicant_dep_name;
	}

	/**
	 * @return the purpose_desc
	 */
	public String getPurpose_desc() {
		return purpose_desc;
	}

	/**
	 * @param purpose_desc
	 *            the purpose_desc to set
	 */
	public void setPurpose_desc(String purpose_desc) {
		this.purpose_desc = purpose_desc;
	}

	/**
	 * @return the check_id
	 */
	public String getCheck_id() {
		return check_id;
	}

	/**
	 * @param check_id
	 *            the check_id to set
	 */
	public void setCheck_id(String check_id) {
		this.check_id = check_id;
	}

	/**
	 * @return the record_id
	 */
	public String getRecord_id() {
		return record_id;
	}

	/**
	 * @param record_id
	 *            the record_id to set
	 */
	public void setRecord_id(String record_id) {
		this.record_id = record_id;
	}

	/**
	 * @return the auditor_id
	 */
	public String getAuditor_id() {
		return auditor_id;
	}

	/**
	 * @param auditor_id
	 *            the auditor_id to set
	 */
	public void setAuditor_id(String auditor_id) {
		this.auditor_id = auditor_id;
	}

	/**
	 * @return the audit_opinion
	 */
	public String getAudit_opinion() {
		return audit_opinion;
	}

	/**
	 * @param audit_opinion
	 *            the audit_opinion to set
	 */
	public void setAudit_opinion(String audit_opinion) {
		this.audit_opinion = audit_opinion;
	}

	/**
	 * @return the audit_state
	 */
	public String getAudit_state() {
		return audit_state;
	}

	/**
	 * @param audit_state
	 *            the audit_state to set
	 */
	public void setAudit_state(String audit_state) {
		this.audit_state = audit_state;
	}

	/**
	 * @return the audit_time
	 */
	public String getAudit_time() {
		return audit_time;
	}

	/**
	 * @param audit_time
	 *            the audit_time to set
	 */
	public void setAudit_time(String audit_time) {
		this.audit_time = audit_time;
	}

	/**
	 * @return the apply_type
	 */
	public String getApply_type() {
		return apply_type;
	}

	/**
	 * @param apply_type
	 *            the apply_type to set
	 */
	public void setApply_type(String apply_type) {
		this.apply_type = apply_type;
	}

	/**
	 * @return the auditor_id_name
	 */
	public String getAuditor_id_name() {
		return auditor_id_name;
	}

	/**
	 * @param auditor_id_name
	 *            the auditor_id_name to set
	 */
	public void setAuditor_id_name(String auditor_id_name) {
		this.auditor_id_name = auditor_id_name;
	}

}
最近下载更多
akbar2020  LV9 2022年9月4日
cx123123  LV7 2022年5月16日
邬松桥  LV11 2022年4月11日
liuzejuncn  LV6 2022年3月11日
wanglinddad  LV54 2022年2月24日
xuyongff  LV24 2021年11月25日
涵涵吖  LV6 2021年4月26日
dangdangdangj  LV4 2021年3月19日
ddddddddt  LV2 2021年3月4日
一只浪里小白嫖  LV3 2021年1月26日
最近浏览更多
m5433661  LV2 3月28日
pi-nang  LV2 3月11日
米继宝是憨憨  LV4 1月25日
123456wadff  LV3 1月15日
iiiiiiixiiiiii  LV1 2023年12月29日
asddwh  LV12 2023年12月26日
磊哥哥哥哥  LV13 2023年12月26日
季明亮 2023年11月21日
暂无贡献等级
wbx666  LV1 2023年9月25日
飞呀飞呀飞不放  LV7 2023年8月9日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友