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

90 lines
2.0 KiB
C#

using System;
namespace Mtxfw.Model
{
/// <summary>
/// freighttemplate_freight:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class freighttemplate_freight
{
#region Model
private int _id;
private int _ifallregions;//是否所有地区0否1是
private string _regions;//地区
private Double _firstweight;//首件、首重、首体积
private Double _firstfreight;//首件、首重、首体积运费
private Double _contweight;//续件、续重、续体积
private Double _contfreight;//续费
private int _fid;//运费模板ID
/// <summary>
///
/// </summary>
public int Id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public int ifallregions
{
set { _ifallregions = value; }
get { return _ifallregions; }
}
/// <summary>
///
/// </summary>
public string regions
{
set { _regions = value; }
get { return _regions; }
}
/// <summary>
///
/// </summary>
public Double firstweight
{
set { _firstweight = value; }
get { return _firstweight; }
}
/// <summary>
///
/// </summary>
public Double firstfreight
{
set { _firstfreight = value; }
get { return _firstfreight; }
}
/// <summary>
///
/// </summary>
public Double contweight
{
set { _contweight = value; }
get { return _contweight; }
}
/// <summary>
///
/// </summary>
public Double contfreight
{
set { _contfreight = value; }
get { return _contfreight; }
}
/// <summary>
///
/// </summary>
public int fid
{
set { _fid = value; }
get { return _fid; }
}
#endregion Model
}
}