90 lines
2.0 KiB
C#
90 lines
2.0 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// freighttemplate_freight:ʵ<><CAB5><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD>ݿ<EFBFBD><DDBF>ֶε<D6B6><CEB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public partial class freighttemplate_freight
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private int _ifallregions;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD>е<EFBFBD><D0B5><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
|||
|
|
private string _regions;//<2F><><EFBFBD><EFBFBD>
|
|||
|
|
private Double _firstweight;//<2F><EFBFBD><D7BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ء<EFBFBD><D8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private Double _firstfreight;//<2F><EFBFBD><D7BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ء<EFBFBD><D8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˷<EFBFBD>
|
|||
|
|
private Double _contweight;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ء<EFBFBD><D8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private Double _contfreight;//<2F><><EFBFBD><EFBFBD>
|
|||
|
|
private int _fid;//<2F>˷<EFBFBD>ģ<EFBFBD><C4A3>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
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|