You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 rivejä
1.5 KiB

using System;
namespace Basic.Model
{
[Serializable]
public partial class bed_class
{
private Decimal _yongliao;
private Decimal _gongfei;
private int _id;
private int _paixu;
private int _state;
private string _title;
/// <summary>
/// 面料用料
/// </summary>
public Decimal yongliao
{
set { _yongliao = value; }
get { return _yongliao; }
}
/// <summary>
/// 加工费
/// </summary>
public Decimal gongfei
{
set { _gongfei = value; }
get { return _gongfei; }
}
/// <summary>
/// 自增阿弟
/// </summary>
public int id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
/// 排序
/// </summary>
public int paixu
{
set { _paixu = value; }
get { return _paixu; }
}
/// <summary>
/// 状态(0/正常 1/隐藏)
/// </summary>
public int state
{
set { _state = value; }
get { return _state; }
}
/// <summary>
/// 名称
/// </summary>
public string title
{
set { _title = value; }
get { return _title; }
}
}
}