moneybean.java

来自「医药供应链管理系统」· Java 代码 · 共 65 行

JAVA
65
字号
package com.captainli.bean;
/**
 * 帐务大小类实体类
 * @author CaptainLi
 *
 */
public class MoneyBean {
	private int mbc_id;
	private String mbc_name;
	private int mbc_type;
	
	private int msc_id;
	private String msc_name;
	private int msc_mbc_id;
	public int getMbc_id() {
		return mbc_id;
	}
	public void setMbc_id(int mbc_id) {
		this.mbc_id = mbc_id;
	}
	public String getMbc_name() {
		return mbc_name;
	}
	public void setMbc_name(String mbc_name) {
		this.mbc_name = mbc_name;
	}
	public int getMsc_id() {
		return msc_id;
	}
	public void setMsc_id(int msc_id) {
		this.msc_id = msc_id;
	}
	public int getMsc_mbc_id() {
		return msc_mbc_id;
	}
	public void setMsc_mbc_id(int msc_mbc_id) {
		this.msc_mbc_id = msc_mbc_id;
	}
	public String getMsc_name() {
		return msc_name;
	}
	public void setMsc_name(String msc_name) {
		this.msc_name = msc_name;
	}
	public int getMbc_type() {
		return mbc_type;
	}
	public void setMbc_type(int mbc_type) {
		this.mbc_type = mbc_type;
	}
	public MoneyBean(int mbc_id, String mbc_name, int mbc_type, int msc_id, String msc_name, int msc_mbc_id) {
		super();
		this.mbc_id = mbc_id;
		this.mbc_name = mbc_name;
		this.mbc_type = mbc_type;
		this.msc_id = msc_id;
		this.msc_name = msc_name;
		this.msc_mbc_id = msc_mbc_id;
	}
	public MoneyBean() {
		super();
		// TODO Auto-generated constructor stub
	}
}

⌨️ 快捷键说明

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