moneyaddbean.java

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

JAVA
91
字号
package com.captainli.bean;

import java.math.BigDecimal;

/**
 * 帐务添加bean类
 * @author CaptainLi
 *
 */
public class MoneyAddBean {
	private int m_id;
	private int m_mbc_type;
	private int m_mbc_id;
	private int m_msc_id;
	private double m_amount;
	private int m_b_id;
	private int m_l_id;
	private String m_note;
	private String m_time;
	public double getM_amount() {
		return m_amount;
	}
	public void setM_amount(double m_amount) {
		this.m_amount = m_amount;
	}
	public int getM_b_id() {
		return m_b_id;
	}
	public void setM_b_id(int m_b_id) {
		this.m_b_id = m_b_id;
	}
	public int getM_id() {
		return m_id;
	}
	public void setM_id(int m_id) {
		this.m_id = m_id;
	}
	public int getM_l_id() {
		return m_l_id;
	}
	public void setM_l_id(int m_l_id) {
		this.m_l_id = m_l_id;
	}
	public int getM_mbc_id() {
		return m_mbc_id;
	}
	public void setM_mbc_id(int m_mbc_id) {
		this.m_mbc_id = m_mbc_id;
	}
	public int getM_mbc_type() {
		return m_mbc_type;
	}
	public void setM_mbc_type(int m_mbc_type) {
		this.m_mbc_type = m_mbc_type;
	}
	public int getM_msc_id() {
		return m_msc_id;
	}
	public void setM_msc_id(int m_msc_id) {
		this.m_msc_id = m_msc_id;
	}
	public String getM_note() {
		return m_note;
	}
	public void setM_note(String m_note) {
		this.m_note = m_note;
	}
	public String getM_time() {
		return m_time;
	}
	public void setM_time(String m_time) {
		this.m_time = m_time;
	}
	public MoneyAddBean(int m_id, int m_mbc_type, int m_mbc_id, int m_msc_id, double m_amount, int m_b_id, int m_l_id, String m_note, String m_time) {
		super();
		this.m_id = m_id;
		this.m_mbc_type = m_mbc_type;
		this.m_mbc_id = m_mbc_id;
		this.m_msc_id = m_msc_id;
		this.m_amount = m_amount;
		this.m_b_id = m_b_id;
		this.m_l_id = m_l_id;
		this.m_note = m_note;
		this.m_time = m_time;
	}
	public MoneyAddBean() {
		super();
		// TODO Auto-generated constructor stub
	}
}

⌨️ 快捷键说明

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