using System; namespace Mtxfw.Model { /// /// user_bank:实体类(属性说明自动提取数据库字段的描述信息) /// [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; /// /// /// public int Id { set{ _id=value;} get{return _id;} } /// /// /// public string tname { set { _tname = value; } get { return _tname; } } /// /// /// public int ttype { set { _ttype = value; } get { return _ttype; } } /// /// /// public int tcharge { set { _tcharge = value; } get { return _tcharge; } } /// /// /// public int iffreeshipping { set { _iffreeshipping = value; } get { return _iffreeshipping; } } /// /// /// public int gtype { set { _gtype = value; } get { return _gtype; } } #endregion Model } }