Files
g.hnyhua.cn/Mtxfw.Model/freighttemplate.cs
2026-02-07 15:48:27 +08:00

72 lines
1.5 KiB
C#

using System;
namespace Mtxfw.Model
{
/// <summary>
/// user_bank:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class freighttemplate
{
#region Model
private int _id;
private string _tname;//模板名称
private int _ttype;//模板类型0买家承担运费1卖家包邮
private int _tcharge;//收费方式0按件数1按重量2按体积
private int _iffreeshipping;//指定条件包邮0否1是
private int _gtype;
/// <summary>
///
/// </summary>
public int Id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public string tname
{
set { _tname = value; }
get { return _tname; }
}
/// <summary>
///
/// </summary>
public int ttype
{
set { _ttype = value; }
get { return _ttype; }
}
/// <summary>
///
/// </summary>
public int tcharge
{
set { _tcharge = value; }
get { return _tcharge; }
}
/// <summary>
///
/// </summary>
public int iffreeshipping
{
set { _iffreeshipping = value; }
get { return _iffreeshipping; }
}
/// <summary>
///
/// </summary>
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}