首次推送
This commit is contained in:
89
Mtxfw.Model/Admin.cs
Normal file
89
Mtxfw.Model/Admin.cs
Normal file
@@ -0,0 +1,89 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Admin:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class Admin
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _username;
|
||||
private string _password;
|
||||
private string _realname;
|
||||
private string _nickname;
|
||||
private string _role;
|
||||
private string _state;
|
||||
private string _Province;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string UserName
|
||||
{
|
||||
set{ _username=value;}
|
||||
get{return _username;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Password
|
||||
{
|
||||
set{ _password=value;}
|
||||
get{return _password;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string RealName
|
||||
{
|
||||
set{ _realname=value;}
|
||||
get{return _realname;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string NickName
|
||||
{
|
||||
set{ _nickname=value;}
|
||||
get{return _nickname;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Role
|
||||
{
|
||||
set{ _role=value;}
|
||||
get{return _role;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string State
|
||||
{
|
||||
set{ _state=value;}
|
||||
get{return _state;}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Province
|
||||
{
|
||||
set{ _Province=value;}
|
||||
get{return _Province;}
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
60
Mtxfw.Model/Adminjs.cs
Normal file
60
Mtxfw.Model/Adminjs.cs
Normal file
@@ -0,0 +1,60 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Adminjs:ʵ<><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 Adminjs
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _jsName;
|
||||
private string _js;
|
||||
private int _ttype;//<2F><><EFBFBD><EFBFBD>0<EFBFBD>̳ǹ<CCB3><C7B9><EFBFBD>Ա1ϵͳ<CFB5><CDB3><EFBFBD><EFBFBD>Ա
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string jsName
|
||||
{
|
||||
set { _jsName = value; }
|
||||
get { return _jsName; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string js
|
||||
{
|
||||
set { _js = value; }
|
||||
get { return _js; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
71
Mtxfw.Model/Ads.cs
Normal file
71
Mtxfw.Model/Ads.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Ads:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class Ads
|
||||
{
|
||||
public Ads()
|
||||
{ }
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _adsname;
|
||||
private string _adsurl;
|
||||
private string _adspic;
|
||||
private int? _adssort = 0;
|
||||
private string _utype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ID
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string AdsName
|
||||
{
|
||||
set { _adsname = value; }
|
||||
get { return _adsname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string AdsUrl
|
||||
{
|
||||
set { _adsurl = value; }
|
||||
get { return _adsurl; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string AdsPic
|
||||
{
|
||||
set { _adspic = value; }
|
||||
get { return _adspic; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? AdsSort
|
||||
{
|
||||
set { _adssort = value; }
|
||||
get { return _adssort; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
305
Mtxfw.Model/Article.cs
Normal file
305
Mtxfw.Model/Article.cs
Normal file
@@ -0,0 +1,305 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Article:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class Article
|
||||
{
|
||||
public Article()
|
||||
{ }
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _senderid;
|
||||
private int _receiverid;
|
||||
private string _title;
|
||||
private DateTime? _addtime;
|
||||
private string _author;
|
||||
private string _content;
|
||||
private string _content2;
|
||||
private string _categoryid;
|
||||
private int _parentid = 0;//ParentID<6 网站底部栏目 ParentID=6关于我们 ParentID=7企业介绍 ParentID=8健康知识 ParentID=9 发图素材 ParentID=10 短视频 ParentID=11 新闻中心 ParentID=12 微信栏目 ParentID=13 微信文章 ParentID=14释放贡献值视频 15赚贡献值视频 16开屏视频 17资讯 18释放广告积分视频 19操作教程 20系统信息 21聊天信息 22动态信息 23动态信息评论 24新手学堂 28弹窗信息 29表示推荐视频 30表示新闻子文章 31表示单篇文章 32 33 34举报信息
|
||||
private string _Paths;
|
||||
private string _Paths2;
|
||||
private string _KeyWords; //微信关键词自动回复时设置的关键词//设置短视频观看密码
|
||||
private string _media_id;//发送的视频的媒体ID
|
||||
private string _thumb_media_id;//缩略图的媒体ID//临时保存七牛转码ID
|
||||
private int _jlsecond; //奖励秒数
|
||||
private Double _xfjmoney; //消费金
|
||||
private Double _tfllmoney; //投放流量
|
||||
private int _zscs; //展示次数
|
||||
private Double _gxzmoney; //贡献值
|
||||
private int _ltype;//链接类型/横屏或竖屏
|
||||
private int _csday;//次数
|
||||
private Decimal _latitude;//纬度
|
||||
private Decimal _longitude;//经度
|
||||
private int _wtype; //微信类型 0被添加时回复/未回复,1消息自动回复/已回复,2关键词自动回复 3群发信息 类型0新闻公告信息 1转账信息 2充值审核信息 3提现审核信息 4订单通知 5任务消息 6留言评论信息 7私聊信息 8群聊信息 9公司会议信息 10私信信息 /视频分享数量 /可播放次数
|
||||
private int _wtype2; //微信类型 0文本/会员问题 1图文/管理员回复 2音乐//语音或视频多少秒//文章点赞数量
|
||||
private int _LinkID; //排序 是否删除发送者聊天信息0否1是
|
||||
private int _hasRead;//是否已阅读 0否1是//短视频权限0完全公开1私密
|
||||
private int _Seef;//是否已审核 0否1是 是否删除接受者聊天信息0否1是
|
||||
private int _IFTJ;//是否推荐 0否1是
|
||||
private int _IFTop;//是否置顶 0否1是
|
||||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int senderid
|
||||
{
|
||||
set { _senderid = value; }
|
||||
get { return _senderid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int receiverid
|
||||
{
|
||||
set { _receiverid = value; }
|
||||
get { return _receiverid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Title
|
||||
{
|
||||
set { _title = value; }
|
||||
get { return _title; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime? AddTime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Author
|
||||
{
|
||||
set { _author = value; }
|
||||
get { return _author; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Content
|
||||
{
|
||||
set { _content = value; }
|
||||
get { return _content; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Content2
|
||||
{
|
||||
set { _content2 = value; }
|
||||
get { return _content2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CategoryId
|
||||
{
|
||||
set { _categoryid = value; }
|
||||
get { return _categoryid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ParentID
|
||||
{
|
||||
set { _parentid = value; }
|
||||
get { return _parentid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Paths
|
||||
{
|
||||
set { _Paths = value; }
|
||||
get { return _Paths; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Paths2
|
||||
{
|
||||
set { _Paths2 = value; }
|
||||
get { return _Paths2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string KeyWords
|
||||
{
|
||||
set { _KeyWords = value; }
|
||||
get { return _KeyWords; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string media_id
|
||||
{
|
||||
set { _media_id = value; }
|
||||
get { return _media_id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string thumb_media_id
|
||||
{
|
||||
set { _thumb_media_id = value; }
|
||||
get { return _thumb_media_id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int jlsecond
|
||||
{
|
||||
set { _jlsecond = value; }
|
||||
get { return _jlsecond; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double xfjmoney
|
||||
{
|
||||
set { _xfjmoney = value; }
|
||||
get { return _xfjmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double tfllmoney
|
||||
{
|
||||
set { _tfllmoney = value; }
|
||||
get { return _tfllmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int zscs
|
||||
{
|
||||
set { _zscs = value; }
|
||||
get { return _zscs; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double gxzmoney
|
||||
{
|
||||
set { _gxzmoney = value; }
|
||||
get { return _gxzmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ltype
|
||||
{
|
||||
set { _ltype = value; }
|
||||
get { return _ltype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int csday
|
||||
{
|
||||
set { _csday = value; }
|
||||
get { return _csday; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal latitude
|
||||
{
|
||||
set { _latitude = value; }
|
||||
get { return _latitude; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal longitude
|
||||
{
|
||||
set { _longitude = value; }
|
||||
get { return _longitude; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int wtype
|
||||
{
|
||||
set { _wtype = value; }
|
||||
get { return _wtype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int wtype2
|
||||
{
|
||||
set { _wtype2 = value; }
|
||||
get { return _wtype2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int LinkID
|
||||
{
|
||||
set { _LinkID = value; }
|
||||
get { return _LinkID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int hasRead
|
||||
{
|
||||
set { _hasRead = value; }
|
||||
get { return _hasRead; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Seef
|
||||
{
|
||||
set { _Seef = value; }
|
||||
get { return _Seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFTJ
|
||||
{
|
||||
set { _IFTJ = value; }
|
||||
get { return _IFTJ; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFTop
|
||||
{
|
||||
set { _IFTop = value; }
|
||||
get { return _IFTop; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
80
Mtxfw.Model/ConvertiblePaper.cs
Normal file
80
Mtxfw.Model/ConvertiblePaper.cs
Normal file
@@ -0,0 +1,80 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// ConvertiblePaper:ʵ<><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 ConvertiblePaper
|
||||
{
|
||||
public ConvertiblePaper()
|
||||
{}
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _cardid;
|
||||
private string _accountid;
|
||||
private string _password;
|
||||
private decimal? _amount;
|
||||
private string _state;
|
||||
private string _Utype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CardId
|
||||
{
|
||||
set{ _cardid=value;}
|
||||
get{return _cardid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string AccountId
|
||||
{
|
||||
set{ _accountid=value;}
|
||||
get{return _accountid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Password
|
||||
{
|
||||
set{ _password=value;}
|
||||
get{return _password;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public decimal? Amount
|
||||
{
|
||||
set{ _amount=value;}
|
||||
get{return _amount;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string State
|
||||
{
|
||||
set{ _state=value;}
|
||||
get{return _state;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Utype
|
||||
{
|
||||
set { _Utype = value; }
|
||||
get { return _Utype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
133
Mtxfw.Model/Guest.cs
Normal file
133
Mtxfw.Model/Guest.cs
Normal file
@@ -0,0 +1,133 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Guest:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class Guest
|
||||
{
|
||||
public Guest()
|
||||
{ }
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _guestname;
|
||||
private string _GuestContact;
|
||||
private string _message;
|
||||
private string _message2;
|
||||
private DateTime? _createtime;
|
||||
private int? _businessid = 0;
|
||||
private int? _userid = 0;
|
||||
private int? _userid2 = 0;
|
||||
private int? _isshow = 0;
|
||||
private int? _isshow2 = 0;
|
||||
private int _starlevel = 0;
|
||||
private int _ttype = 0;//0为评论,1为问答,2为留言
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ID
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string GuestName
|
||||
{
|
||||
set { _guestname = value; }
|
||||
get { return _guestname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string GuestContact
|
||||
{
|
||||
set { _GuestContact = value; }
|
||||
get { return _GuestContact; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Message
|
||||
{
|
||||
set { _message = value; }
|
||||
get { return _message; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Message2
|
||||
{
|
||||
set { _message2 = value; }
|
||||
get { return _message2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime? CreateTime
|
||||
{
|
||||
set { _createtime = value; }
|
||||
get { return _createtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? BusinessID
|
||||
{
|
||||
set { _businessid = value; }
|
||||
get { return _businessid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? userid
|
||||
{
|
||||
set { _userid = value; }
|
||||
get { return _userid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? userid2
|
||||
{
|
||||
set { _userid2 = value; }
|
||||
get { return _userid2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? IsShow
|
||||
{
|
||||
set { _isshow = value; }
|
||||
get { return _isshow; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? IsShow2
|
||||
{
|
||||
set { _isshow2 = value; }
|
||||
get { return _isshow2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int starlevel
|
||||
{
|
||||
set { _starlevel = value; }
|
||||
get { return _starlevel; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
53
Mtxfw.Model/Guide.cs
Normal file
53
Mtxfw.Model/Guide.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Guide:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class Guide
|
||||
{
|
||||
public Guide()
|
||||
{ }
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _question;
|
||||
private string _answer;
|
||||
private DateTime? _createtime = DateTime.Now;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ID
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Question
|
||||
{
|
||||
set { _question = value; }
|
||||
get { return _question; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Answer
|
||||
{
|
||||
set { _answer = value; }
|
||||
get { return _answer; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime? CreateTime
|
||||
{
|
||||
set { _createtime = value; }
|
||||
get { return _createtime; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
60
Mtxfw.Model/Link.cs
Normal file
60
Mtxfw.Model/Link.cs
Normal file
@@ -0,0 +1,60 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Link:ʵ<><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 Link
|
||||
{
|
||||
|
||||
private int _id;
|
||||
private string _linkname;
|
||||
private string _linkurl;
|
||||
private string _linkimg;
|
||||
private DateTime _createtime = DateTime.Now;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ID
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string LinkName
|
||||
{
|
||||
set { _linkname = value; }
|
||||
get { return _linkname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string LinkUrl
|
||||
{
|
||||
set { _linkurl = value; }
|
||||
get { return _linkurl; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string LinkImg
|
||||
{
|
||||
set { _linkimg = value; }
|
||||
get { return _linkimg; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime CreateTime
|
||||
{
|
||||
set { _createtime = value; }
|
||||
get { return _createtime; }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
167
Mtxfw.Model/Mtxfw.Model.csproj
Normal file
167
Mtxfw.Model/Mtxfw.Model.csproj
Normal file
@@ -0,0 +1,167 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{1D0B9E05-919D-4AA0-A0D1-CBA71C001013}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Mtxfw.Model</RootNamespace>
|
||||
<AssemblyName>Mtxfw.Model</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SccProjectName>
|
||||
</SccProjectName>
|
||||
<SccLocalPath>
|
||||
</SccLocalPath>
|
||||
<SccAuxPath>
|
||||
</SccAuxPath>
|
||||
<SccProvider>
|
||||
</SccProvider>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="SqlSugar, Version=5.0.0.12, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\sqlSugar.5.0.0.12\lib\SqlSugar.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Admin.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Adminjs.cs" />
|
||||
<Compile Include="Ads.cs" />
|
||||
<Compile Include="Article.cs" />
|
||||
<Compile Include="bbs.cs" />
|
||||
<Compile Include="business_info.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="choujiang.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="city.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ConvertiblePaper.cs" />
|
||||
<Compile Include="county.cs" />
|
||||
<Compile Include="duihuanma.cs" />
|
||||
<Compile Include="forum.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="freighttemplate.cs" />
|
||||
<Compile Include="freighttemplate_free.cs" />
|
||||
<Compile Include="freighttemplate_freight.cs" />
|
||||
<Compile Include="Guest.cs" />
|
||||
<Compile Include="Guide.cs" />
|
||||
<Compile Include="host.cs" />
|
||||
<Compile Include="Link.cs" />
|
||||
<Compile Include="order_info.cs" />
|
||||
<Compile Include="order_product_info.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="province.cs" />
|
||||
<Compile Include="P_Category.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="P_Guige.cs" />
|
||||
<Compile Include="P_Product.cs" />
|
||||
<Compile Include="qiandao.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="queue_window.cs" />
|
||||
<Compile Include="timer_control.cs" />
|
||||
<Compile Include="tradingarea.cs" />
|
||||
<Compile Include="user_address.cs" />
|
||||
<Compile Include="User_AppLine.cs" />
|
||||
<Compile Include="user_bank.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="user_BusinessHours.cs" />
|
||||
<Compile Include="user_cart.cs" />
|
||||
<Compile Include="user_code.cs" />
|
||||
<Compile Include="User_CZ_log.cs" />
|
||||
<Compile Include="User_Errlog.cs" />
|
||||
<Compile Include="user_favorite.cs" />
|
||||
<Compile Include="user_Goods.cs" />
|
||||
<Compile Include="user_Goods_lb.cs" />
|
||||
<Compile Include="user_guanzhu.cs" />
|
||||
<Compile Include="user_info.cs" />
|
||||
<Compile Include="user_info_fenghao.cs" />
|
||||
<Compile Include="user_jjfp.cs" />
|
||||
<Compile Include="user_live.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="user_livefile.cs" />
|
||||
<Compile Include="user_live_online.cs" />
|
||||
<Compile Include="user_live_tclog.cs" />
|
||||
<Compile Include="User_log.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="User_OnLine.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="User_openids.cs" />
|
||||
<Compile Include="user_proxy.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="user_RestDay.cs" />
|
||||
<Compile Include="user_Results.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="user_Results_jl.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="user_Results_jl2.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="user_Results_jl3.cs" />
|
||||
<Compile Include="user_Results_jl4.cs" />
|
||||
<Compile Include="user_sign_log.cs" />
|
||||
<Compile Include="User_Subplate.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="User_tuiguang.cs" />
|
||||
<Compile Include="User_xjcjq.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="user_yj_log.cs" />
|
||||
<Compile Include="user_YZMs.cs" />
|
||||
<Compile Include="User_zhongjiang.cs" />
|
||||
<Compile Include="user_zzjf.cs" />
|
||||
<Compile Include="user_zzjf_log.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
135
Mtxfw.Model/P_Category.cs
Normal file
135
Mtxfw.Model/P_Category.cs
Normal file
@@ -0,0 +1,135 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// business_info:ʵ<><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 P_Category
|
||||
{
|
||||
public P_Category()
|
||||
{ }
|
||||
#region Model
|
||||
private int _C_ID;
|
||||
private int _C_PARENTID;
|
||||
private string _C_PARENTIDs;
|
||||
private string _C_NAME;
|
||||
private string _CNAME;
|
||||
private string _C_images;
|
||||
private int _C_LinkID;
|
||||
private int _C_Layer;
|
||||
private int _GGEnable;//<2F><><EFBFBD><EFBFBD>0<EFBFBD>ر<EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD>
|
||||
private int _IfShow;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _ttype;//0<><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>2<EFBFBD><32>Դ<EFBFBD><D4B4>ѡ<EFBFBD><D1A1>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>4ֱ<34><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>5<EFBFBD><35><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>6ƴ<36><C6B4><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>7<EFBFBD><37>ɱ<EFBFBD><C9B1>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>8Ԥ<38><D4A4><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>
|
||||
private int _C_ProductCount;
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int C_ID
|
||||
{
|
||||
set { _C_ID = value; }
|
||||
get { return _C_ID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int C_PARENTID
|
||||
{
|
||||
set { _C_PARENTID = value; }
|
||||
get { return _C_PARENTID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string C_NAME
|
||||
{
|
||||
set { _C_NAME = value; }
|
||||
get { return _C_NAME; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CNAME
|
||||
{
|
||||
set { _CNAME = value; }
|
||||
get { return _CNAME; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string C_images
|
||||
{
|
||||
set { _C_images = value; }
|
||||
get { return _C_images; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string C_PARENTIDs
|
||||
{
|
||||
set { _C_PARENTIDs = value; }
|
||||
get { return _C_PARENTIDs; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int C_LinkID
|
||||
{
|
||||
set { _C_LinkID = value; }
|
||||
get { return _C_LinkID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int C_Layer
|
||||
{
|
||||
set { _C_Layer = value; }
|
||||
get { return _C_Layer; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GGEnable
|
||||
{
|
||||
set { _GGEnable = value; }
|
||||
get { return _GGEnable; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IfShow
|
||||
{
|
||||
set { _IfShow = value; }
|
||||
get { return _IfShow; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int C_ProductCount
|
||||
{
|
||||
set { _C_ProductCount = value; }
|
||||
get { return _C_ProductCount; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
208
Mtxfw.Model/P_Guige.cs
Normal file
208
Mtxfw.Model/P_Guige.cs
Normal file
@@ -0,0 +1,208 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// business_info:ʵ<><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 P_Guige
|
||||
{
|
||||
public P_Guige()
|
||||
{ }
|
||||
#region Model
|
||||
private int _G_ID;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _G_PID;//<2F><>ƷID
|
||||
private string _G_Name;//<2F><><EFBFBD><EFBFBD>
|
||||
private Double _G_JG;//<2F>ּ<EFBFBD>
|
||||
private Double _G_JG0;//<2F>Ƽ<EFBFBD><C6BC><EFBFBD>
|
||||
private Double _G_JG1;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private Double _G_JG2;//ԭ<><D4AD>
|
||||
private Double _G_JG3;//<2F>ɱ<EFBFBD><C9B1><EFBFBD>
|
||||
private Double _G_JG4;//<2F><>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD>//<2F><><EFBFBD><EFBFBD>ֵ
|
||||
private Double _G_JG5;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><EFBFBD>ֱ<EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD>
|
||||
private Double _G_JG6;//˰/<2F><EFBFBD><D7B5><EFBFBD><EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD>
|
||||
private Double _G_JG7;//<2F><><EFBFBD><EFBFBD>ֱ<EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD>
|
||||
private Double _G_JG8;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD>
|
||||
private Double _G_JF;//<2F><><EFBFBD><EFBFBD>
|
||||
private Double _G_ZL;//<2F><><EFBFBD><EFBFBD>
|
||||
private int _G_KC;//<2F><><EFBFBD><EFBFBD>
|
||||
private string _G_Color;//<2F><>ɫ
|
||||
private string _G_tihuodian;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _G_Images;//ͼƬ
|
||||
private int _ttype;//0<><30><EFBFBD><EFBFBD>
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int G_ID
|
||||
{
|
||||
set { _G_ID = value; }
|
||||
get { return _G_ID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int G_PID
|
||||
{
|
||||
set { _G_PID = value; }
|
||||
get { return _G_PID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string G_Name
|
||||
{
|
||||
set { _G_Name = value; }
|
||||
get { return _G_Name; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG
|
||||
{
|
||||
set { _G_JG = value; }
|
||||
get { return _G_JG; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG0
|
||||
{
|
||||
set { _G_JG0 = value; }
|
||||
get { return _G_JG0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG1
|
||||
{
|
||||
set { _G_JG1 = value; }
|
||||
get { return _G_JG1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG2
|
||||
{
|
||||
set { _G_JG2 = value; }
|
||||
get { return _G_JG2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG3
|
||||
{
|
||||
set { _G_JG3 = value; }
|
||||
get { return _G_JG3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG4
|
||||
{
|
||||
set { _G_JG4 = value; }
|
||||
get { return _G_JG4; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG5
|
||||
{
|
||||
set { _G_JG5 = value; }
|
||||
get { return _G_JG5; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG6
|
||||
{
|
||||
set { _G_JG6 = value; }
|
||||
get { return _G_JG6; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG7
|
||||
{
|
||||
set { _G_JG7 = value; }
|
||||
get { return _G_JG7; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JG8
|
||||
{
|
||||
set { _G_JG8 = value; }
|
||||
get { return _G_JG8; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_JF
|
||||
{
|
||||
set { _G_JF = value; }
|
||||
get { return _G_JF; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double G_ZL
|
||||
{
|
||||
set { _G_ZL = value; }
|
||||
get { return _G_ZL; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int G_KC
|
||||
{
|
||||
set { _G_KC = value; }
|
||||
get { return _G_KC; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string G_Color
|
||||
{
|
||||
set { _G_Color = value; }
|
||||
get { return _G_Color; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string G_tihuodian
|
||||
{
|
||||
set { _G_tihuodian = value; }
|
||||
get { return _G_tihuodian; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string G_Images
|
||||
{
|
||||
set { _G_Images = value; }
|
||||
get { return _G_Images; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
473
Mtxfw.Model/P_Product.cs
Normal file
473
Mtxfw.Model/P_Product.cs
Normal file
@@ -0,0 +1,473 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// business_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class P_Product
|
||||
{
|
||||
public P_Product()
|
||||
{ }
|
||||
#region Model
|
||||
private int _P_ID;
|
||||
private string _P_images;
|
||||
private string _P_NAME;
|
||||
private string _P_ENAME;//英文标题
|
||||
private string _P_NAME2;//一句话说明
|
||||
private string _P_bianhao;//产品编号
|
||||
private int _P_UserID;//商家ID
|
||||
private int _P_CATEGORY;
|
||||
private string _P_CATEGORYs;
|
||||
private string _PNAME;
|
||||
private string _PNAME2;
|
||||
private Double _P_VIP_P;//初级会员现价
|
||||
private Double _P_VIP_P1;//中级会员现价
|
||||
private Double _P_VIP_P2;//高级会员现价
|
||||
private Double _P_VIP_P3;//特级会员现价
|
||||
private int _P_M_P;//所需积分
|
||||
private string _P_M_Web;
|
||||
private Double _P_Market_P;//市场价
|
||||
private Double _P_CB_P;//成本
|
||||
private Double _P_YH_P;//运费
|
||||
private string _P_DESCRIPTION;//商品详情
|
||||
private string _P_EDESCRIPTION;//英文内容/规格参数
|
||||
private string _P_DESCRIPTION1;//核心功能
|
||||
private string _P_DESCRIPTION2;//使用说明
|
||||
private int _P_Inventory;//库存
|
||||
private int _P_Orders;//订购次数
|
||||
private int _P_Orders0;//
|
||||
private int _P_Orders1;//赞次数
|
||||
private int _P_Orders2;//浏览次数
|
||||
private int _P_PJOrders;//评论次数
|
||||
private int _P_SCOrders;//收藏次数
|
||||
private bool _P_COMMENDF;//热卖推荐
|
||||
private bool _P_qgproduct;//限时抢购
|
||||
private bool _P_ppproduct;//品牌精选
|
||||
private bool _P_jpproduct;//逆向竟拍
|
||||
private bool P_cjproduct;//抽奖
|
||||
private int _P_HITED;//排序ID
|
||||
private int _P_IFTop;//置顶
|
||||
private string _province;
|
||||
private string _city;
|
||||
private string _county;
|
||||
private DateTime _P_ADDATE;
|
||||
private string _P_State;
|
||||
private int _P_JiangLi;
|
||||
private int _P_JiangLi2;
|
||||
private int _P_JiangLi3;
|
||||
private string _P_yanse;//产品颜色
|
||||
private int _IFDelete;//假删除 0否 1是
|
||||
private string _IFDeleteTime;//假删除时间
|
||||
private string _utype;//0积分商品1创客商品2新人专区商品3套餐4兑换商品5福利区商品6拼团商品7农产品商品8预定商品9助农专区商品10推广员商品11爆品专区商品12补贴专区商品13体验区商品14商家商品 15镇街服务商商品
|
||||
private int _utype0;//0管理员商品1商家商品2联盟部商品
|
||||
private int _P_peitype;//配送方式
|
||||
private int _P_peitype0;//配送方式0
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_ID
|
||||
{
|
||||
set { _P_ID = value; }
|
||||
get { return _P_ID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_images
|
||||
{
|
||||
set { _P_images = value; }
|
||||
get { return _P_images; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_NAME
|
||||
{
|
||||
set { _P_NAME = value; }
|
||||
get { return _P_NAME; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_ENAME
|
||||
{
|
||||
set { _P_ENAME = value; }
|
||||
get { return _P_ENAME; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_NAME2
|
||||
{
|
||||
set { _P_NAME2 = value; }
|
||||
get { return _P_NAME2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_bianhao
|
||||
{
|
||||
set { _P_bianhao = value; }
|
||||
get { return _P_bianhao; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_UserID
|
||||
{
|
||||
set { _P_UserID = value; }
|
||||
get { return _P_UserID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_CATEGORY
|
||||
{
|
||||
set { _P_CATEGORY = value; }
|
||||
get { return _P_CATEGORY; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_CATEGORYs
|
||||
{
|
||||
set { _P_CATEGORYs = value; }
|
||||
get { return _P_CATEGORYs; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string PNAME
|
||||
{
|
||||
set { _PNAME = value; }
|
||||
get { return _PNAME; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string PNAME2
|
||||
{
|
||||
set { _PNAME2 = value; }
|
||||
get { return _PNAME2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double P_VIP_P
|
||||
{
|
||||
set { _P_VIP_P = value; }
|
||||
get { return _P_VIP_P; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double P_VIP_P1
|
||||
{
|
||||
set { _P_VIP_P1 = value; }
|
||||
get { return _P_VIP_P1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double P_VIP_P2
|
||||
{
|
||||
set { _P_VIP_P2 = value; }
|
||||
get { return _P_VIP_P2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double P_VIP_P3
|
||||
{
|
||||
set { _P_VIP_P3 = value; }
|
||||
get { return _P_VIP_P3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_M_P
|
||||
{
|
||||
set { _P_M_P = value; }
|
||||
get { return _P_M_P; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_M_Web
|
||||
{
|
||||
set { _P_M_Web = value; }
|
||||
get { return _P_M_Web; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double P_Market_P
|
||||
{
|
||||
set { _P_Market_P = value; }
|
||||
get { return _P_Market_P; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double P_CB_P
|
||||
{
|
||||
set { _P_CB_P = value; }
|
||||
get { return _P_CB_P; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double P_YH_P
|
||||
{
|
||||
set { _P_YH_P = value; }
|
||||
get { return _P_YH_P; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_DESCRIPTION
|
||||
{
|
||||
set { _P_DESCRIPTION = value; }
|
||||
get { return _P_DESCRIPTION; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_DESCRIPTION1
|
||||
{
|
||||
set { _P_DESCRIPTION1 = value; }
|
||||
get { return _P_DESCRIPTION1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_DESCRIPTION2
|
||||
{
|
||||
set { _P_DESCRIPTION2 = value; }
|
||||
get { return _P_DESCRIPTION2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_EDESCRIPTION
|
||||
{
|
||||
set { _P_EDESCRIPTION = value; }
|
||||
get { return _P_EDESCRIPTION; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_Inventory
|
||||
{
|
||||
set { _P_Inventory = value; }
|
||||
get { return _P_Inventory; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_Orders
|
||||
{
|
||||
set { _P_Orders = value; }
|
||||
get { return _P_Orders; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_Orders0
|
||||
{
|
||||
set { _P_Orders0 = value; }
|
||||
get { return _P_Orders0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_Orders1
|
||||
{
|
||||
set { _P_Orders1 = value; }
|
||||
get { return _P_Orders1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_Orders2
|
||||
{
|
||||
set { _P_Orders2 = value; }
|
||||
get { return _P_Orders2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_PJOrders
|
||||
{
|
||||
set { _P_PJOrders = value; }
|
||||
get { return _P_PJOrders; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_SCOrders
|
||||
{
|
||||
set { _P_SCOrders = value; }
|
||||
get { return _P_SCOrders; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public bool P_COMMENDF
|
||||
{
|
||||
set { _P_COMMENDF = value; }
|
||||
get { return _P_COMMENDF; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_HITED
|
||||
{
|
||||
set { _P_HITED = value; }
|
||||
get { return _P_HITED; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Province
|
||||
{
|
||||
set { _province = value; }
|
||||
get { return _province; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string City
|
||||
{
|
||||
set { _city = value; }
|
||||
get { return _city; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string County
|
||||
{
|
||||
set { _county = value; }
|
||||
get { return _county; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime P_ADDATE
|
||||
{
|
||||
set { _P_ADDATE = value; }
|
||||
get { return _P_ADDATE; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_State
|
||||
{
|
||||
set { _P_State = value; }
|
||||
get { return _P_State; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public bool P_qgproduct
|
||||
{
|
||||
set { _P_qgproduct = value; }
|
||||
get { return _P_qgproduct; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public bool P_ppproduct
|
||||
{
|
||||
set { _P_ppproduct = value; }
|
||||
get { return _P_ppproduct; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_JiangLi
|
||||
{
|
||||
set { _P_JiangLi = value; }
|
||||
get { return _P_JiangLi; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_JiangLi2
|
||||
{
|
||||
set { _P_JiangLi2 = value; }
|
||||
get { return _P_JiangLi2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_JiangLi3
|
||||
{
|
||||
set { _P_JiangLi3 = value; }
|
||||
get { return _P_JiangLi3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string P_yanse
|
||||
{
|
||||
set { _P_yanse = value; }
|
||||
get { return _P_yanse; }
|
||||
}
|
||||
public int IFDelete
|
||||
{
|
||||
set { _IFDelete = value; }
|
||||
get { return _IFDelete; }
|
||||
}
|
||||
public string IFDeleteTime
|
||||
{
|
||||
set { _IFDeleteTime = value; }
|
||||
get { return _IFDeleteTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype0
|
||||
{
|
||||
set { _utype0 = value; }
|
||||
get { return _utype0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_peitype
|
||||
{
|
||||
set { _P_peitype = value; }
|
||||
get { return _P_peitype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int P_peitype0
|
||||
{
|
||||
set { _P_peitype0 = value; }
|
||||
get { return _P_peitype0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
36
Mtxfw.Model/Properties/AssemblyInfo.cs
Normal file
36
Mtxfw.Model/Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// 有关程序集的常规信息通过以下
|
||||
// 特性集控制。更改这些特性值可修改
|
||||
// 与程序集关联的信息。
|
||||
[assembly: AssemblyTitle("Mtxfw.Model")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("微软中国")]
|
||||
[assembly: AssemblyProduct("Mtxfw.Model")]
|
||||
[assembly: AssemblyCopyright("Copyright © 微软中国 2011")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// 将 ComVisible 设置为 false 使此程序集中的类型
|
||||
// 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型,
|
||||
// 则将该类型上的 ComVisible 特性设置为 true。
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
|
||||
[assembly: Guid("3c6d9377-cf8d-4268-8ec3-39fdefbab75a")]
|
||||
|
||||
// 程序集的版本信息由下面四个值组成:
|
||||
//
|
||||
// 主版本
|
||||
// 次版本
|
||||
// 内部版本号
|
||||
// 修订号
|
||||
//
|
||||
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
|
||||
// 方法是按如下所示使用“*”:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
75
Mtxfw.Model/User_AppLine.cs
Normal file
75
Mtxfw.Model/User_AppLine.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 User_AppLine
|
||||
{
|
||||
public User_AppLine()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _Id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _InNum;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _InTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private string _IP;//<2F><><EFBFBD><EFBFBD>ip
|
||||
private int _TType; //<2F><>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD> 0APP<50><50>ҳ 1<><31>ͨ<EFBFBD><CDA8>ҳ
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int InNum
|
||||
{
|
||||
set { _InNum = value; }
|
||||
get { return _InNum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime InTime
|
||||
{
|
||||
set { _InTime = value; }
|
||||
get { return _InTime; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public string IP
|
||||
{
|
||||
set { _IP = value; }
|
||||
get { return _IP; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int TType
|
||||
{
|
||||
set { _TType = value; }
|
||||
get { return _TType; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
82
Mtxfw.Model/User_CZ_log.cs
Normal file
82
Mtxfw.Model/User_CZ_log.cs
Normal file
@@ -0,0 +1,82 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// User_CZ_log:ʵ<><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 User_CZ_log
|
||||
{
|
||||
public User_CZ_log()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _Id;
|
||||
private int _MemberId;//<2F><>Ա<EFBFBD>û<EFBFBD><C3BB><EFBFBD>
|
||||
private DateTime _AddTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private string _IP;//<2F><><EFBFBD><EFBFBD>ip
|
||||
private string _Body;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _UType; //<2F><>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1>1<EFBFBD><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD>2<EFBFBD><32>Ա 3<><33>Ա<EFBFBD><D4B1>̬
|
||||
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime AddTime
|
||||
{
|
||||
set { _AddTime = value; }
|
||||
get { return _AddTime; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string IP
|
||||
{
|
||||
set { _IP = value; }
|
||||
get { return _IP; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Body
|
||||
{
|
||||
set { _Body = value; }
|
||||
get { return _Body; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UType
|
||||
{
|
||||
set { _UType = value; }
|
||||
get { return _UType; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
72
Mtxfw.Model/User_Errlog.cs
Normal file
72
Mtxfw.Model/User_Errlog.cs
Normal file
@@ -0,0 +1,72 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// User_log:ʵ<><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 User_Errlog
|
||||
{
|
||||
public User_Errlog()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _Id;
|
||||
private int _DLID;//<2F><>ԱID
|
||||
private string _ErrType;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private string _ErrBody;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϸ<EFBFBD><CFB8><EFBFBD><EFBFBD>
|
||||
private string _ErrBody2;//<2F><><EFBFBD><EFBFBD>Message
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int DLID
|
||||
{
|
||||
set { _DLID = value; }
|
||||
get { return _DLID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ErrType
|
||||
{
|
||||
set { _ErrType = value; }
|
||||
get { return _ErrType; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ErrBody
|
||||
{
|
||||
set { _ErrBody = value; }
|
||||
get { return _ErrBody; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ErrBody2
|
||||
{
|
||||
set { _ErrBody2 = value; }
|
||||
get { return _ErrBody2; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
161
Mtxfw.Model/User_OnLine.cs
Normal file
161
Mtxfw.Model/User_OnLine.cs
Normal file
@@ -0,0 +1,161 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 User_OnLine
|
||||
{
|
||||
public User_OnLine()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _Id;
|
||||
private string _SessionId;//SessionId
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _DLID;//<2F><><EFBFBD><EFBFBD>ID
|
||||
private int _ZDLID;//<2F>ܴ<EFBFBD><DCB4><EFBFBD>ID
|
||||
private int _GDID;//<2F>ɶ<EFBFBD>ID
|
||||
private int _FGSID;//<2F>ֹ<EFBFBD>˾ID
|
||||
private DateTime _InTime;//<2F><>¼ʱ<C2BC><CAB1>
|
||||
private DateTime _ReTime;//ˢ<><CBA2>ʱ<EFBFBD><CAB1>//1<><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD>δˢ<CEB4><CBA2><EFBFBD><EFBFBD>Ϊ<EFBFBD>Զ<EFBFBD><D4B6>˳<EFBFBD>
|
||||
private DateTime _OutTime;//<2F>˳<EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _IsOnline;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private string _IP;//<2F><>¼ip
|
||||
private string _MAC;//<2F><>¼MAC<41><43>ַ
|
||||
private int _IsDL;//<2F>Ƿ<EFBFBD><C7B7>ڄe̎<65><CC8E><EFBFBD><EFBFBD>
|
||||
private int _UserType; //<2F><>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD>0<EFBFBD><30>Ա1<D4B1><31><EFBFBD><EFBFBD>Ա
|
||||
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string SessionId
|
||||
{
|
||||
set { _SessionId = value; }
|
||||
get { return _SessionId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int DLID
|
||||
{
|
||||
set { _DLID = value; }
|
||||
get { return _DLID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ZDLID
|
||||
{
|
||||
set { _ZDLID = value; }
|
||||
get { return _ZDLID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GDID
|
||||
{
|
||||
set { _GDID = value; }
|
||||
get { return _GDID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int FGSID
|
||||
{
|
||||
set { _FGSID = value; }
|
||||
get { return _FGSID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime InTime
|
||||
{
|
||||
set { _InTime = value; }
|
||||
get { return _InTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime ReTime
|
||||
{
|
||||
set { _ReTime = value; }
|
||||
get { return _ReTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime OutTime
|
||||
{
|
||||
set { _OutTime = value; }
|
||||
get { return _OutTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IsOnline
|
||||
{
|
||||
set { _IsOnline = value; }
|
||||
get { return _IsOnline; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public string IP
|
||||
{
|
||||
set { _IP = value; }
|
||||
get { return _IP; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public string MAC
|
||||
{
|
||||
set { _MAC = value; }
|
||||
get { return _MAC; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UserType
|
||||
{
|
||||
set { _UserType = value; }
|
||||
get { return _UserType; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IsDL
|
||||
{
|
||||
set { _IsDL = value; }
|
||||
get { return _IsDL; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
51
Mtxfw.Model/User_Subplate.cs
Normal file
51
Mtxfw.Model/User_Subplate.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// city:ʵ<><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 User_Subplate
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _LeaderID;//<2F>鳤ID;
|
||||
private DateTime _SubTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _SubType;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int LeaderID
|
||||
{
|
||||
set { _LeaderID = value; }
|
||||
get { return _LeaderID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime SubTime
|
||||
{
|
||||
set { _SubTime = value; }
|
||||
get { return _SubTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int SubType
|
||||
{
|
||||
set { _SubType = value; }
|
||||
get { return _SubType; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
153
Mtxfw.Model/User_log.cs
Normal file
153
Mtxfw.Model/User_log.cs
Normal file
@@ -0,0 +1,153 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// User_log:ʵ<><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 User_log
|
||||
{
|
||||
public User_log()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _Id;
|
||||
private string _SessionId;//SessionId
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _Orders;//<2F><><EFBFBD>ʴ<EFBFBD><CAB4><EFBFBD>
|
||||
private int _SearchType;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͣ<EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD>ٶȣ<D9B6>2<EFBFBD><32>360<36><30>3<EFBFBD><33><EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD>4<EFBFBD><34><EFBFBD>ȸ<EFBFBD>
|
||||
private int _GDID;//<2F>ɶ<EFBFBD>ID
|
||||
private int _FGSID;//<2F>ֹ<EFBFBD>˾ID
|
||||
private DateTime _OperatingTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private string _OperatingIP;//<2F><><EFBFBD><EFBFBD>ip
|
||||
private string _SearchKeys;//<2F><><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><D8BC><EFBFBD>
|
||||
private string _OperatingBrowse;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _OperatingPage;//<2F><><EFBFBD><EFBFBD>ҳ<EFBFBD><D2B3><EFBFBD>Ͳ<EFBFBD><CDB2><EFBFBD>
|
||||
private string _SourcePage;//<2F><>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD>ҳ<EFBFBD><D2B3><EFBFBD>Ͳ<EFBFBD><CDB2><EFBFBD>
|
||||
private int _UserType; //<2F><>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD>
|
||||
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string SessionId
|
||||
{
|
||||
set { _SessionId = value; }
|
||||
get { return _SessionId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Orders
|
||||
{
|
||||
set { _Orders = value; }
|
||||
get { return _Orders; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int SearchType
|
||||
{
|
||||
set { _SearchType = value; }
|
||||
get { return _SearchType; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GDID
|
||||
{
|
||||
set { _GDID = value; }
|
||||
get { return _GDID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int FGSID
|
||||
{
|
||||
set { _FGSID = value; }
|
||||
get { return _FGSID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime OperatingTime
|
||||
{
|
||||
set { _OperatingTime = value; }
|
||||
get { return _OperatingTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string OperatingIP
|
||||
{
|
||||
set { _OperatingIP = value; }
|
||||
get { return _OperatingIP; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string SearchKeys
|
||||
{
|
||||
set { _SearchKeys = value; }
|
||||
get { return _SearchKeys; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string OperatingBrowse
|
||||
{
|
||||
set { _OperatingBrowse = value; }
|
||||
get { return _OperatingBrowse; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string OperatingPage
|
||||
{
|
||||
set { _OperatingPage = value; }
|
||||
get { return _OperatingPage; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string SourcePage
|
||||
{
|
||||
set { _SourcePage = value; }
|
||||
get { return _SourcePage; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UserType
|
||||
{
|
||||
set { _UserType = value; }
|
||||
get { return _UserType; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
83
Mtxfw.Model/User_openids.cs
Normal file
83
Mtxfw.Model/User_openids.cs
Normal file
@@ -0,0 +1,83 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// User_openids:ʵ<><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 User_openids
|
||||
{
|
||||
public User_openids()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _Id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _SJId;//<2F><><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD>ID
|
||||
private string _openid;//openid
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _ttype; //openid<69><64><EFBFBD><EFBFBD>0֧<30><D6A7><EFBFBD><EFBFBD> 1<31><CEA2>
|
||||
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int SJId
|
||||
{
|
||||
set { _SJId = value; }
|
||||
get { return _SJId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string openid
|
||||
{
|
||||
set { _openid = value; }
|
||||
get { return _openid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
154
Mtxfw.Model/User_tuiguang.cs
Normal file
154
Mtxfw.Model/User_tuiguang.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// User_log:ʵ<><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 User_tuiguang
|
||||
{
|
||||
public User_tuiguang()
|
||||
{}
|
||||
#region Model
|
||||
private int _Id;
|
||||
private int _MemberId;
|
||||
private Double _Totalmoney;
|
||||
private string _datatype;//<2F><><EFBFBD><EFBFBD>һ
|
||||
private string _datatype2;//<2F><><EFBFBD>Ͷ<EFBFBD>
|
||||
private string _Name;//<2F><><EFBFBD><EFBFBD>
|
||||
private string _Tel;//<2F><>ϵ<EFBFBD>绰
|
||||
private string _province;//<2F><><EFBFBD><EFBFBD>ʡ<EFBFBD><CAA1>
|
||||
private string _city;//<2F><><EFBFBD>ڳ<EFBFBD><DAB3><EFBFBD>
|
||||
private string _Conent;//<2F><>ע<EFBFBD><D7A2>Ϣ
|
||||
private DateTime _addTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _Seef;//0<><30>ʾδ<CABE><CEB4><EFBFBD>ˣ<EFBFBD>1<EFBFBD><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD>ˣ<EFBFBD>-1<><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˣ<EFBFBD>-2<><32>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1>
|
||||
private DateTime _seeftime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _IFDelete;//<2F><>ɾ<EFBFBD><C9BE> 0<><30> 1<><31>
|
||||
private DateTime _IFDeleteTime;//<2F><>ɾ<EFBFBD><C9BE>ʱ<EFBFBD><CAB1>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalmoney
|
||||
{
|
||||
set { _Totalmoney = value; }
|
||||
get { return _Totalmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string datatype
|
||||
{
|
||||
set { _datatype = value; }
|
||||
get { return _datatype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string datatype2
|
||||
{
|
||||
set { _datatype2 = value; }
|
||||
get { return _datatype2; }
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Name
|
||||
{
|
||||
set { _Name = value; }
|
||||
get { return _Name; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Tel
|
||||
{
|
||||
set { _Tel = value; }
|
||||
get { return _Tel; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string province
|
||||
{
|
||||
set { _province = value; }
|
||||
get { return _province; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string city
|
||||
{
|
||||
set { _city = value; }
|
||||
get { return _city; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Conent
|
||||
{
|
||||
set { _Conent = value; }
|
||||
get { return _Conent; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addTime
|
||||
{
|
||||
set { _addTime = value; }
|
||||
get { return _addTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Seef
|
||||
{
|
||||
set { _Seef = value; }
|
||||
get { return _Seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime seeftime
|
||||
{
|
||||
set { _seeftime = value; }
|
||||
get { return _seeftime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFDelete
|
||||
{
|
||||
set { _IFDelete = value; }
|
||||
get { return _IFDelete; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime IFDeleteTime
|
||||
{
|
||||
set { _IFDeleteTime = value; }
|
||||
get { return _IFDeleteTime; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
90
Mtxfw.Model/User_xjcjq.cs
Normal file
90
Mtxfw.Model/User_xjcjq.cs
Normal file
@@ -0,0 +1,90 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 User_xjcjq
|
||||
{
|
||||
public User_xjcjq()
|
||||
{}
|
||||
#region Model
|
||||
private int _Id;
|
||||
private int _cjId;//ϵͳ<CFB5>齱<EFBFBD><E9BDB1><EFBFBD><EFBFBD>ID
|
||||
private int _kqjcs;//<2F>ɳ齱<C9B3><E9BDB1><EFBFBD><EFBFBD>
|
||||
private int _yqjcs;//<2F>ѳ齱<D1B3><E9BDB1><EFBFBD><EFBFBD>
|
||||
private DateTime _addtime;//ʱ<><CAB1>
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _Seef;//0<><30>ʾδ<CABE><CEB4><EFBFBD>ˣ<EFBFBD>1<EFBFBD><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD>ˣ<EFBFBD>2<EFBFBD><32>ʾ<EFBFBD><CABE>ɾ<EFBFBD><C9BE>
|
||||
private int _utype;//<2F><><EFBFBD>͡<EFBFBD>0<EFBFBD><30><EFBFBD>ֽ<EFBFBD><D6BD>齱<EFBFBD><E9BDB1>1<EFBFBD>ǻ<EFBFBD><C7BB>ֳ齱
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int cjId
|
||||
{
|
||||
set { _cjId = value; }
|
||||
get { return _cjId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int kqjcs
|
||||
{
|
||||
set { _kqjcs = value; }
|
||||
get { return _kqjcs; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int yqjcs
|
||||
{
|
||||
set { _yqjcs = value; }
|
||||
get { return _yqjcs; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Seef
|
||||
/// </summary>
|
||||
public int Seef
|
||||
{
|
||||
set { _Seef = value; }
|
||||
get { return _Seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
}
|
||||
}
|
||||
|
||||
90
Mtxfw.Model/User_zhongjiang.cs
Normal file
90
Mtxfw.Model/User_zhongjiang.cs
Normal file
@@ -0,0 +1,90 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 User_zhongjiang
|
||||
{
|
||||
public User_zhongjiang()
|
||||
{}
|
||||
#region Model
|
||||
private int _Id;
|
||||
private int _cjqId;//<2F>齱ȨID
|
||||
private int _zjdj;//<2F>н<EFBFBD><D0BD>ȼ<EFBFBD>
|
||||
private Double _zjje;//<2F>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _addtime;//ʱ<><CAB1>
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _seef;//
|
||||
private int _utype;//<2F><><EFBFBD>͡<EFBFBD>0<EFBFBD><30><EFBFBD>ֽ<EFBFBD><D6BD>齱<EFBFBD><E9BDB1>1<EFBFBD>ǻ<EFBFBD><C7BB>ֳ齱
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int cjqId
|
||||
{
|
||||
set { _cjqId = value; }
|
||||
get { return _cjqId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int zjdj
|
||||
{
|
||||
set { _zjdj = value; }
|
||||
get { return _zjdj; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double zjje
|
||||
{
|
||||
set { _zjje = value; }
|
||||
get { return _zjje; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
}
|
||||
}
|
||||
|
||||
334
Mtxfw.Model/bbs.cs
Normal file
334
Mtxfw.Model/bbs.cs
Normal file
@@ -0,0 +1,334 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 bbs
|
||||
{
|
||||
public bbs()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _B_Id;
|
||||
private int _B_ForumId;//<2F><><EFBFBD><EFBFBD>
|
||||
private string _B_ForumIds;//<2F><><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD>
|
||||
private string _B_Title;//<2F><><EFBFBD><EFBFBD>
|
||||
private string _B_TitleColor;//<2F><><EFBFBD><EFBFBD>ɫ<EFBFBD><C9AB>
|
||||
private string _B_Body;//<2F><><EFBFBD><EFBFBD>
|
||||
private int _B_Layer;//0Ϊ<30><CEAA><EFBFBD><EFBFBD>1Ϊ<31>ظ<EFBFBD>
|
||||
private Int64 _B_FatherId;//<2F><>ID
|
||||
private int _B_Childs;//<2F>ظ<EFBFBD><D8B8><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _B_Hits;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _B_MemberId;//B_MemberId
|
||||
private string _B_IP;//IP<49><50>ַ
|
||||
private DateTime _B_SubmitDate;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private DateTime _B_UpDate;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _B_LastMemberId;//<2F><><EFBFBD><EFBFBD><F3B7A2B1><EFBFBD>ID
|
||||
private DateTime _B_LastSubmitDate;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _B_SetTop;//<2F>Ƿ<EFBFBD><C7B7>ö<EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_seef;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_Lock;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_IFHot;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_IFTJ;//<2F>Ƿ<EFBFBD><C7B7>Ƽ<EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_IFGG;//<2F>Ƿ<C7B7>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_IFSell;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_SellPrice;//<2F><><EFBFBD>ۼ۸<DBBC>
|
||||
private int _B_IFReBack;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ظ<EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _B_IFLogin;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD>¼<EFBFBD><C2BC><EFBFBD>ܿ<EFBFBD><DCBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _B_IFShow;//<2F>Ƿ<EFBFBD><C7B7>ظ<EFBFBD><D8B8><EFBFBD><EFBFBD>ܿ<EFBFBD><DCBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private string _B_Url;//<2F><>תURL
|
||||
private string _B_Pic;//Ĭ<><C4AC>ͼƬ
|
||||
private int _B_TPDA_LinkID;//ͶƱ<CDB6><C6B1><EFBFBD><EFBFBD>
|
||||
private int _B_TPDA_Num;//ͶƱ<CDB6><C6B1><EFBFBD><EFBFBD>
|
||||
private DateTime _B_TP_StarDate;//ͶƱ<CDB6><C6B1>ʼʱ<CABC><CAB1>
|
||||
private DateTime _B_TP_EndDate;//ͶƱ<CDB6><C6B1><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _B_TType;//0<><30>ͨ<EFBFBD><CDA8>1<EFBFBD><31>ͼ<EFBFBD><CDBC>2ת<32><D7AA><EFBFBD><EFBFBD>3ԭ<33><D4AD><EFBFBD><EFBFBD>4<EFBFBD><34><EFBFBD>ţ<EFBFBD>5<EFBFBD><EFBFBD><EEB6AF>6ͶƱ<CDB6><C6B1>7<EFBFBD><37><EFBFBD><EFBFBD>
|
||||
private int _B_IFDelete;//<2F>Ƿ<EFBFBD><C7B7>Ѿ<EFBFBD>ɾ<EFBFBD><C9BE>0<EFBFBD><30>1<EFBFBD><31>
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 B_Id
|
||||
{
|
||||
set { _B_Id = value; }
|
||||
get { return _B_Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_ForumId
|
||||
{
|
||||
set { _B_ForumId = value; }
|
||||
get { return _B_ForumId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_ForumIds
|
||||
{
|
||||
set { _B_ForumIds = value; }
|
||||
get { return _B_ForumIds; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_Title
|
||||
{
|
||||
set { _B_Title = value; }
|
||||
get { return _B_Title; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_TitleColor
|
||||
{
|
||||
set { _B_TitleColor = value; }
|
||||
get { return _B_TitleColor; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_Body
|
||||
{
|
||||
set { _B_Body = value; }
|
||||
get { return _B_Body; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_Layer
|
||||
{
|
||||
set { _B_Layer = value; }
|
||||
get { return _B_Layer; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 B_FatherId
|
||||
{
|
||||
set { _B_FatherId = value; }
|
||||
get { return _B_FatherId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_Childs
|
||||
{
|
||||
set { _B_Childs = value; }
|
||||
get { return _B_Childs; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_Hits
|
||||
{
|
||||
set { _B_Hits = value; }
|
||||
get { return _B_Hits; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_MemberId
|
||||
{
|
||||
set { _B_MemberId = value; }
|
||||
get { return _B_MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_IP
|
||||
{
|
||||
set { _B_IP = value; }
|
||||
get { return _B_IP; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime B_SubmitDate
|
||||
{
|
||||
set { _B_SubmitDate = value; }
|
||||
get { return _B_SubmitDate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime B_UpDate
|
||||
{
|
||||
set { _B_UpDate = value; }
|
||||
get { return _B_UpDate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_LastMemberId
|
||||
{
|
||||
set { _B_LastMemberId = value; }
|
||||
get { return _B_LastMemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime B_LastSubmitDate
|
||||
{
|
||||
set { _B_LastSubmitDate = value; }
|
||||
get { return _B_LastSubmitDate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_SetTop
|
||||
{
|
||||
set { _B_SetTop = value; }
|
||||
get { return _B_SetTop; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_seef
|
||||
{
|
||||
set { _B_seef = value; }
|
||||
get { return _B_seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_Lock
|
||||
{
|
||||
set { _B_Lock = value; }
|
||||
get { return _B_Lock; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFHot
|
||||
{
|
||||
set { _B_IFHot = value; }
|
||||
get { return _B_IFHot; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFTJ
|
||||
{
|
||||
set { _B_IFTJ = value; }
|
||||
get { return _B_IFTJ; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFGG
|
||||
{
|
||||
set { _B_IFGG = value; }
|
||||
get { return _B_IFGG; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFSell
|
||||
{
|
||||
set { _B_IFSell = value; }
|
||||
get { return _B_IFSell; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_SellPrice
|
||||
{
|
||||
set { _B_SellPrice = value; }
|
||||
get { return _B_SellPrice; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFReBack
|
||||
{
|
||||
set { _B_IFReBack = value; }
|
||||
get { return _B_IFReBack; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFLogin
|
||||
{
|
||||
set { _B_IFLogin = value; }
|
||||
get { return _B_IFLogin; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFShow
|
||||
{
|
||||
set { _B_IFShow = value; }
|
||||
get { return _B_IFShow; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_Url
|
||||
{
|
||||
set { _B_Url = value; }
|
||||
get { return _B_Url; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_Pic
|
||||
{
|
||||
set { _B_Pic = value; }
|
||||
get { return _B_Pic; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_TPDA_LinkID
|
||||
{
|
||||
set { _B_TPDA_LinkID = value; }
|
||||
get { return _B_TPDA_LinkID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_TPDA_Num
|
||||
{
|
||||
set { _B_TPDA_Num = value; }
|
||||
get { return _B_TPDA_Num; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime B_TP_StarDate
|
||||
{
|
||||
set { _B_TP_StarDate = value; }
|
||||
get { return _B_TP_StarDate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime B_TP_EndDate
|
||||
{
|
||||
set { _B_TP_EndDate = value; }
|
||||
get { return _B_TP_EndDate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_TType
|
||||
{
|
||||
set { _B_TType = value; }
|
||||
get { return _B_TType; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_IFDelete
|
||||
{
|
||||
set { _B_IFDelete = value; }
|
||||
get { return _B_IFDelete; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
}
|
||||
}
|
||||
|
||||
478
Mtxfw.Model/business_info.cs
Normal file
478
Mtxfw.Model/business_info.cs
Normal file
@@ -0,0 +1,478 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// business_info:ʵ<><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 business_info
|
||||
{
|
||||
public business_info()
|
||||
{ }
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _companyid;//<2F>̼<EFBFBD><CCBC>˻<EFBFBD>
|
||||
private string _companyname;//<2F>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _frname;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _fridcard;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤
|
||||
private string _email;//<2F><EFBFBD>
|
||||
private string _industry;//<2F><>ҵ
|
||||
private string _businessrange;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _province;
|
||||
private string _city;
|
||||
private string _county;
|
||||
private int _IFFill;//<2F>Ƿ<EFBFBD><C7B7>ֶ<EFBFBD><D6B6><EFBFBD>д<EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private string _Agentrading;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڽֵ<DABD><D6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _companyaddress;
|
||||
private string _xcoo;//<2F><>ͼx<CDBC><78><EFBFBD><EFBFBD>
|
||||
private string _ycoo;//<2F><>ͼy<CDBC><79><EFBFBD><EFBFBD>
|
||||
private string _internetsite;//<2F>̼<EFBFBD><CCBC><EFBFBD>ַ
|
||||
private string _contactphone;//<2F><>ϵ<EFBFBD>绰
|
||||
private string _contactpeople;//<2F><>ϵ<EFBFBD><CFB5>
|
||||
|
||||
private string _Busroutes;//<2F><><EFBFBD>ô<EFBFBD><C3B4><EFBFBD>
|
||||
private string _introduction;
|
||||
private string _introduction2;
|
||||
private string _introduction3;
|
||||
private string _introduction4;
|
||||
|
||||
private string _picture;
|
||||
private DateTime? _applytime;
|
||||
private string _applystate;
|
||||
private int? _clsid;
|
||||
private string _clsnname;
|
||||
private int? _clsid2;
|
||||
private string _clsnname2;
|
||||
private string _Discount;//Ԥ<><D4A4><EFBFBD>ۿ<EFBFBD>
|
||||
private string _Businesslicense;//Ӫҵִ<D2B5><D6B4>
|
||||
private string _TaxRegistration;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤
|
||||
private string _token_no;//ȡ<>ֿ<EFBFBD><D6BF><EFBFBD><EFBFBD>к<EFBFBD>
|
||||
private string _huifu_uid;//<2F>㸶<EFBFBD>û<EFBFBD>ID
|
||||
private string _token_no0;//<2F>㸶<EFBFBD>û<EFBFBD>ȡ<EFBFBD>ֿ<EFBFBD><D6BF><EFBFBD><EFBFBD>к<EFBFBD>
|
||||
private string _ktoken_no;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡȡ<D1A1>ֿ<EFBFBD><D6BF><EFBFBD><EFBFBD>к<EFBFBD>
|
||||
private string _khuifu_uid;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD>㸶<EFBFBD>û<EFBFBD>ID
|
||||
private string _ktoken_no0;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD>㸶<EFBFBD>û<EFBFBD>ȡ<EFBFBD>ֿ<EFBFBD><D6BF><EFBFBD><EFBFBD>к<EFBFBD>
|
||||
private Double _smmoney;//ɨ<><C9A8><EFBFBD>ܶ<EFBFBD>
|
||||
private int _UserId;//<2F><>ԱID
|
||||
private int _seef;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˣ<EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _seef0;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˣ<EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _showpic;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>ʾԤ<CABE><D4A4>ͼƬ<CDBC><C6AC>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _ifedit;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><DEB8><EFBFBD><EFBFBD>ϣ<EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _ifeditbank;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϣ<EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _ifd0;//<2F>Ƿ<EFBFBD><C7B7>ѿ<EFBFBD>ͨD0<44><30>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _paytype;//֧<><D6A7><EFBFBD><EFBFBD>ʽ<EFBFBD><CABD>0<EFBFBD><30><EFBFBD><EFBFBD>1<EFBFBD>㸶2
|
||||
private string _utype;//0<><30><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD>1<EFBFBD><31>˾2<CBBE><32><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD>3<EFBFBD><EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CompanyId
|
||||
{
|
||||
set { _companyid = value; }
|
||||
get { return _companyid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CompanyName
|
||||
{
|
||||
set { _companyname = value; }
|
||||
get { return _companyname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string frname
|
||||
{
|
||||
set { _frname = value; }
|
||||
get { return _frname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string fridcard
|
||||
{
|
||||
set { _fridcard = value; }
|
||||
get { return _fridcard; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string email
|
||||
{
|
||||
set { _email = value; }
|
||||
get { return _email; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Industry
|
||||
{
|
||||
set { _industry = value; }
|
||||
get { return _industry; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string BusinessRange
|
||||
{
|
||||
set { _businessrange = value; }
|
||||
get { return _businessrange; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Province
|
||||
{
|
||||
set { _province = value; }
|
||||
get { return _province; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string City
|
||||
{
|
||||
set { _city = value; }
|
||||
get { return _city; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string County
|
||||
{
|
||||
set { _county = value; }
|
||||
get { return _county; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFFill
|
||||
{
|
||||
set { _IFFill = value; }
|
||||
get { return _IFFill; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Agentrading
|
||||
{
|
||||
set { _Agentrading = value; }
|
||||
get { return _Agentrading; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Companyaddress
|
||||
{
|
||||
set { _companyaddress = value; }
|
||||
get { return _companyaddress; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string xcoo
|
||||
{
|
||||
set { _xcoo = value; }
|
||||
get { return _xcoo; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ycoo
|
||||
{
|
||||
set { _ycoo = value; }
|
||||
get { return _ycoo; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string InternetSite
|
||||
{
|
||||
set { _internetsite = value; }
|
||||
get { return _internetsite; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ContactPhone
|
||||
{
|
||||
set { _contactphone = value; }
|
||||
get { return _contactphone; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ContactPeople
|
||||
{
|
||||
set { _contactpeople = value; }
|
||||
get { return _contactpeople; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Busroutes
|
||||
{
|
||||
set { _Busroutes = value; }
|
||||
get { return _Busroutes; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Introduction
|
||||
{
|
||||
set { _introduction = value; }
|
||||
get { return _introduction; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Introduction2
|
||||
{
|
||||
set { _introduction2 = value; }
|
||||
get { return _introduction2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Introduction3
|
||||
{
|
||||
set { _introduction3 = value; }
|
||||
get { return _introduction3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Introduction4
|
||||
{
|
||||
set { _introduction4 = value; }
|
||||
get { return _introduction4; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string picture
|
||||
{
|
||||
set { _picture = value; }
|
||||
get { return _picture; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime? ApplyTime
|
||||
{
|
||||
set { _applytime = value; }
|
||||
get { return _applytime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ApplyState
|
||||
{
|
||||
set { _applystate = value; }
|
||||
get { return _applystate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? ClsID
|
||||
{
|
||||
set { _clsid = value; }
|
||||
get { return _clsid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ClsnName
|
||||
{
|
||||
set { _clsnname = value; }
|
||||
get { return _clsnname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int? ClsID2
|
||||
{
|
||||
set { _clsid2 = value; }
|
||||
get { return _clsid2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ClsnName2
|
||||
{
|
||||
set { _clsnname2 = value; }
|
||||
get { return _clsnname2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Discount
|
||||
{
|
||||
set { _Discount = value; }
|
||||
get { return _Discount; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Businesslicense
|
||||
{
|
||||
set { _Businesslicense = value; }
|
||||
get { return _Businesslicense; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string TaxRegistration
|
||||
{
|
||||
set { _TaxRegistration = value; }
|
||||
get { return _TaxRegistration; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string token_no
|
||||
{
|
||||
set { _token_no = value; }
|
||||
get { return _token_no; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string huifu_uid
|
||||
{
|
||||
set { _huifu_uid = value; }
|
||||
get { return _huifu_uid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string token_no0
|
||||
{
|
||||
set { _token_no0 = value; }
|
||||
get { return _token_no0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ktoken_no
|
||||
{
|
||||
set { _ktoken_no = value; }
|
||||
get { return _ktoken_no; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string khuifu_uid
|
||||
{
|
||||
set { _khuifu_uid = value; }
|
||||
get { return _khuifu_uid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ktoken_no0
|
||||
{
|
||||
set { _ktoken_no0 = value; }
|
||||
get { return _ktoken_no0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double smmoney
|
||||
{
|
||||
set { _smmoney = value; }
|
||||
get { return _smmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UserId
|
||||
{
|
||||
set { _UserId = value; }
|
||||
get { return _UserId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int seef0
|
||||
{
|
||||
set { _seef0 = value; }
|
||||
get { return _seef0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int showpic
|
||||
{
|
||||
set { _showpic = value; }
|
||||
get { return _showpic; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ifedit
|
||||
{
|
||||
set { _ifedit = value; }
|
||||
get { return _ifedit; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ifeditbank
|
||||
{
|
||||
set { _ifeditbank = value; }
|
||||
get { return _ifeditbank; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ifd0
|
||||
{
|
||||
set { _ifd0 = value; }
|
||||
get { return _ifd0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int paytype
|
||||
{
|
||||
set { _paytype = value; }
|
||||
get { return _paytype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
91
Mtxfw.Model/choujiang.cs
Normal file
91
Mtxfw.Model/choujiang.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 choujiang
|
||||
{
|
||||
public choujiang()
|
||||
{}
|
||||
#region Model
|
||||
private int _Id;
|
||||
private Double _xfje;//<2F><><EFBFBD>ѽ<EFBFBD><D1BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _kzjzs1;//<2F><><EFBFBD>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>1
|
||||
private int _kzjzs2;//<2F><><EFBFBD>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>2
|
||||
private int _kzjzs3;//<2F><><EFBFBD>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>3
|
||||
private int _kzjzs4;//<2F><><EFBFBD>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>4
|
||||
private int _kzjzs5;//<2F><><EFBFBD>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>5
|
||||
private int _utype;//<2F><><EFBFBD>͡<EFBFBD>0<EFBFBD><30><EFBFBD>ֽ<EFBFBD><D6BD>齱<EFBFBD><E9BDB1>1<EFBFBD>ǻ<EFBFBD><C7BB>ֳ齱
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set { _Id = value; }
|
||||
get { return _Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double xfje
|
||||
{
|
||||
set { _xfje = value; }
|
||||
get { return _xfje; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int kzjzs1
|
||||
{
|
||||
set { _kzjzs1 = value; }
|
||||
get { return _kzjzs1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int kzjzs2
|
||||
{
|
||||
set { _kzjzs2 = value; }
|
||||
get { return _kzjzs2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int kzjzs3
|
||||
{
|
||||
set { _kzjzs3 = value; }
|
||||
get { return _kzjzs3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int kzjzs4
|
||||
{
|
||||
set { _kzjzs4 = value; }
|
||||
get { return _kzjzs4; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int kzjzs5
|
||||
{
|
||||
set { _kzjzs5 = value; }
|
||||
get { return _kzjzs5; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
}
|
||||
}
|
||||
|
||||
87
Mtxfw.Model/city.cs
Normal file
87
Mtxfw.Model/city.cs
Normal file
@@ -0,0 +1,87 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// city:ʵ<><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 city
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _cityid;
|
||||
private string _cityname;
|
||||
private string _provinceid;
|
||||
private string _pinyin;
|
||||
private string _pinyinjx;
|
||||
private string _citycode;
|
||||
private string _center;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CityID
|
||||
{
|
||||
set{ _cityid=value;}
|
||||
get{return _cityid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CityName
|
||||
{
|
||||
set{ _cityname=value;}
|
||||
get{return _cityname;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ProvinceID
|
||||
{
|
||||
set{ _provinceid=value;}
|
||||
get{return _provinceid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string pinyin
|
||||
{
|
||||
set { _pinyin = value; }
|
||||
get { return _pinyin; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string pinyinjx
|
||||
{
|
||||
set { _pinyinjx = value; }
|
||||
get { return _pinyinjx; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string citycode
|
||||
{
|
||||
set { _citycode = value; }
|
||||
get { return _citycode; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string center
|
||||
{
|
||||
set { _center = value; }
|
||||
get { return _center; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
62
Mtxfw.Model/county.cs
Normal file
62
Mtxfw.Model/county.cs
Normal file
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// county:ʵ<><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 county
|
||||
{
|
||||
public county()
|
||||
{}
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _countyid;
|
||||
private string _countyname;
|
||||
private string _cityid;
|
||||
private string _center;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CountyID
|
||||
{
|
||||
set{ _countyid=value;}
|
||||
get{return _countyid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CountyName
|
||||
{
|
||||
set{ _countyname=value;}
|
||||
get{return _countyname;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CityID
|
||||
{
|
||||
set{ _cityid=value;}
|
||||
get{return _cityid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string center
|
||||
{
|
||||
set { _center = value; }
|
||||
get { return _center; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
82
Mtxfw.Model/duihuanma.cs
Normal file
82
Mtxfw.Model/duihuanma.cs
Normal file
@@ -0,0 +1,82 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 duihuanma
|
||||
{
|
||||
public duihuanma()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;//
|
||||
private string _dhm;//<2F>һ<EFBFBD><D2BB><EFBFBD>
|
||||
private int _yxq;//<2F>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD>Ч<EFBFBD><D0A7>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _seef;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD>ʹ<EFBFBD><CAB9>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _gtype; //<2F><><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// BZContent
|
||||
/// </summary>
|
||||
public string dhm
|
||||
{
|
||||
set { _dhm = value; }
|
||||
get { return _dhm; }
|
||||
}
|
||||
/// <summary>
|
||||
/// BZContent
|
||||
/// </summary>
|
||||
public int yxq
|
||||
{
|
||||
set { _yxq = value; }
|
||||
get { return _yxq; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Seef
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
134
Mtxfw.Model/forum.cs
Normal file
134
Mtxfw.Model/forum.cs
Normal file
@@ -0,0 +1,134 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 forum
|
||||
{
|
||||
public forum()
|
||||
{}
|
||||
#region Model
|
||||
private int _B_Id;
|
||||
private string _B_ForumName;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _B_ForumCount;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _B_ForumManager;//<2F><><EFBFBD><EFBFBD>ԱID1,2,3...
|
||||
private string _B_ForumPicture;//Ĭ<><C4AC>ͼƬ
|
||||
private int _B_linkid;//<2F><><EFBFBD><EFBFBD>
|
||||
private int _B_pid;//<2F><>ID
|
||||
private string _B_pids;//<2F><>ID<49>б<EFBFBD>
|
||||
private int _B_Layer;//<2F><>1<EFBFBD><31>2<EFBFBD><32>3...
|
||||
private int _B_seef;//δ<><CEB4><EFBFBD><EFBFBD>01<30><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _B_SJ;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private string _B_FUrl;//<2F><>תURL
|
||||
private string _B_Intro;//<2F><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5>
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_Id
|
||||
{
|
||||
set { _B_Id = value; }
|
||||
get { return _B_Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_ForumName
|
||||
{
|
||||
set { _B_ForumName = value; }
|
||||
get { return _B_ForumName; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_ForumCount
|
||||
{
|
||||
set { _B_ForumCount = value; }
|
||||
get { return _B_ForumCount; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_ForumManager
|
||||
{
|
||||
set { _B_ForumManager = value; }
|
||||
get { return _B_ForumManager; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_ForumPicture
|
||||
{
|
||||
set { _B_ForumPicture = value; }
|
||||
get { return _B_ForumPicture; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_linkid
|
||||
{
|
||||
set { _B_linkid = value; }
|
||||
get { return _B_linkid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_pid
|
||||
{
|
||||
set { _B_pid = value; }
|
||||
get { return _B_pid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_pids
|
||||
{
|
||||
set { _B_pids = value; }
|
||||
get { return _B_pids; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_Layer
|
||||
{
|
||||
set { _B_Layer = value; }
|
||||
get { return _B_Layer; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int B_seef
|
||||
{
|
||||
set { _B_seef = value; }
|
||||
get { return _B_seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime B_SJ
|
||||
{
|
||||
set { _B_SJ = value; }
|
||||
get { return _B_SJ; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_FUrl
|
||||
{
|
||||
set { _B_FUrl = value; }
|
||||
get { return _B_FUrl; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string B_Intro
|
||||
{
|
||||
set { _B_Intro = value; }
|
||||
get { return _B_Intro; }
|
||||
}
|
||||
#endregion Model
|
||||
}
|
||||
}
|
||||
|
||||
71
Mtxfw.Model/freighttemplate.cs
Normal file
71
Mtxfw.Model/freighttemplate.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _tname;//ģ<><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _ttype;//ģ<><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD>ҳе<D2B3><D0B5>˷<EFBFBD>1<EFBFBD><31><EFBFBD>Ұ<EFBFBD><D2B0><EFBFBD>
|
||||
private int _tcharge;//<2F>շѷ<D5B7>ʽ0<CABD><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD>2<EFBFBD><32><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _iffreeshipping;//ָ<><D6B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
71
Mtxfw.Model/freighttemplate_free.cs
Normal file
71
Mtxfw.Model/freighttemplate_free.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// freighttemplate_free:ʵ<><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_free
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _regions;//<2F><><EFBFBD><EFBFBD>
|
||||
private int _freetype;//<2F><><EFBFBD>ð<EFBFBD><C3B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1<><31>Ԫ<EFBFBD><D4AA><EFBFBD>ʽ<EFBFBD><CABD><EFBFBD> 2<><32><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>Ԫ<EFBFBD><D4AA><EFBFBD>ʽ<EFBFBD><CABD><EFBFBD>
|
||||
private Double _fullpiece;//<2F><><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private Double _fullyuan;//<2F><>Ԫ<EFBFBD><D4AA><EFBFBD>ʽ<EFBFBD><CABD><EFBFBD>
|
||||
private int _fid;//<2F>˷<EFBFBD>ģ<EFBFBD><C4A3>ID
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string regions
|
||||
{
|
||||
set { _regions = value; }
|
||||
get { return _regions; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int freetype
|
||||
{
|
||||
set { _freetype = value; }
|
||||
get { return _freetype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double fullpiece
|
||||
{
|
||||
set { _fullpiece = value; }
|
||||
get { return _fullpiece; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double fullyuan
|
||||
{
|
||||
set { _fullyuan = value; }
|
||||
get { return _fullyuan; }
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int fid
|
||||
{
|
||||
set { _fid = value; }
|
||||
get { return _fid; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
89
Mtxfw.Model/freighttemplate_freight.cs
Normal file
89
Mtxfw.Model/freighttemplate_freight.cs
Normal file
@@ -0,0 +1,89 @@
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
33
Mtxfw.Model/host.cs
Normal file
33
Mtxfw.Model/host.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 host
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _hostname;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string hostname
|
||||
{
|
||||
set { _hostname = value; }
|
||||
get { return _hostname; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
762
Mtxfw.Model/order_info.cs
Normal file
762
Mtxfw.Model/order_info.cs
Normal file
@@ -0,0 +1,762 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// business_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class order_info
|
||||
{
|
||||
public order_info()
|
||||
{ }
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _pid;//直播ID或拼单商品ID
|
||||
private int _poid;//拼单父ID
|
||||
private int _pcount;//需拼单数量/已转售数量
|
||||
private int _ypcount;//已拼单数量/已提货数量
|
||||
private int _addressid;//配送地址ID
|
||||
private string _orderid;//订单ID
|
||||
private string _orderhxm;//订单核销码
|
||||
private string _selcolor;
|
||||
private string _guige;
|
||||
private string _Contactname;
|
||||
private string _Contacttel;
|
||||
private string _Province;
|
||||
private string _City;
|
||||
private string _County;
|
||||
private int _IFFill;
|
||||
private string _Tradingarea;
|
||||
private string _Address;
|
||||
private string _Address0;
|
||||
private string _Zipcode;
|
||||
private string _Guests;//客户留言
|
||||
private string _yundanhao;//运单号
|
||||
private string _kdcompay;//快递公司
|
||||
private string _wlremarks;//物流备注
|
||||
private Double _Totalprice;//总价
|
||||
private Double _JFTotalprice;//使用积分
|
||||
private Double _Totalprice0;//推荐奖励
|
||||
private Double _Totalprice1;//运费
|
||||
private Double _Totalprice2;//代理奖
|
||||
private Double _Totalprice3;//消费积分
|
||||
private Double _Totalprice4;//成本价
|
||||
private Double _Totalprice5;//LC支付金额
|
||||
private Double _Totalprice6;//支付宝支付金额
|
||||
private Double _Totalprice7;//USDT支付金额
|
||||
private Double _Totalprice8;//实际总价
|
||||
private Double _Totalprice9;//实际USDT支付金额
|
||||
private Double _Totalprice10;//已代售总金额
|
||||
private int _Totalnum;
|
||||
private string _O_Submit;
|
||||
private DateTime _O_SubmitDate;
|
||||
private string _O_Payed;//0未付款 -1订单已取消 1已付款 -2申请退款 2已确认发货 -3申请退货 3已确认收货交易完成 -2申请退款 -3申请退货 -4同意退货 -5退款完成 -6退货完成 4拼团中 5拼单已完成 6未成团
|
||||
private DateTime _O_Payed_Date;
|
||||
private string _O_Shipped;//0未过期 1已过期
|
||||
private DateTime _O_Shipped_Date;
|
||||
private string _O_received;//0未激活 1已激活
|
||||
private DateTime _O_received_Date;
|
||||
private string _O_Return;
|
||||
private DateTime _O_Return_Date;
|
||||
private string _O_Returned;
|
||||
private DateTime _O_Returned_Date;
|
||||
private string _O_recReturn;
|
||||
private DateTime _O_recReturn_Date;
|
||||
private string _O_yhj;//优惠卷ID列表
|
||||
private string _O_ReturnReason;//退货理由
|
||||
private int _UserID;//购买者
|
||||
private int _MemberId;//所属商家ID
|
||||
private int _ZTMemberId;//自提商家ID
|
||||
private int _IFDelete;//0未删除,1已删除
|
||||
private string _IFDeleteTime;//删除时间
|
||||
private int _hasRead;//是否已阅读 0否1是//是否是兑换区订单0否1是
|
||||
private int _Isbuzhong;//最多可代售数量
|
||||
private int _O_Seef;//0未结算,1已结算
|
||||
private string _O_Seef_Date;//结算时间
|
||||
private string _transaction_id;//微信支付订单号
|
||||
private string _out_trade_no;//商户订单号
|
||||
private string _refund_id;//商户退款单号//汇付商户订单号
|
||||
private int _refundstatus;//退款状态
|
||||
private string _refund_channel;//退款通道
|
||||
private string _user_received_account;//退款收款账号
|
||||
private string _success_time;//退款成功时间
|
||||
private string _openid;//小程序支付openid
|
||||
private string _utype;//0表示余额,1表示兑换券,2表示消费券,3在线支付宝,4微信支付,5代付
|
||||
private int _ttype;//0积分区商城1新零售商城2特惠区商城5盲盒商品订单
|
||||
private int _ttype0;//0管理员订单 1商家订单 2联盟部订单
|
||||
private int _ptype;//0普通订单 1拼团订单/回购订单
|
||||
private int _ptgroup;//0拼中订单组数/所属会员区域ID
|
||||
private int _ifxnhy;//是否虚拟会员拼单/已确认数量/微信支付订单是否已发货0否1是2发货出错
|
||||
private int _ypznum;//会员已拼中次数/已退货数量
|
||||
private int _ifxhpt;//是否每天循环拼团/已转售百分比/0银花优选订单1普民慧订单
|
||||
private int _ifpd;//是否开团中/已提货百分比
|
||||
private int _ifbhzshy;//是否包含真实会员拼单/已退货百分比
|
||||
private int _peitype;//配送方式 0 = 邮寄 ,1 = 自提
|
||||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int pid
|
||||
{
|
||||
set { _pid = value; }
|
||||
get { return _pid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int poid
|
||||
{
|
||||
set { _poid = value; }
|
||||
get { return _poid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int pcount
|
||||
{
|
||||
set { _pcount = value; }
|
||||
get { return _pcount; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ypcount
|
||||
{
|
||||
set { _ypcount = value; }
|
||||
get { return _ypcount; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int addressid
|
||||
{
|
||||
set { _addressid = value; }
|
||||
get { return _addressid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string orderid
|
||||
{
|
||||
set { _orderid = value; }
|
||||
get { return _orderid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string orderhxm
|
||||
{
|
||||
set { _orderhxm = value; }
|
||||
get { return _orderhxm; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string selcolor
|
||||
{
|
||||
set { _selcolor = value; }
|
||||
get { return _selcolor; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string guige
|
||||
{
|
||||
set { _guige = value; }
|
||||
get { return _guige; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string kdcompay
|
||||
{
|
||||
set { _kdcompay = value; }
|
||||
get { return _kdcompay; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Contactname
|
||||
{
|
||||
set { _Contactname = value; }
|
||||
get { return _Contactname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Contacttel
|
||||
{
|
||||
set { _Contacttel = value; }
|
||||
get { return _Contacttel; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Province
|
||||
{
|
||||
set { _Province = value; }
|
||||
get { return _Province; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string City
|
||||
{
|
||||
set { _City = value; }
|
||||
get { return _City; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string County
|
||||
{
|
||||
set { _County = value; }
|
||||
get { return _County; }
|
||||
}
|
||||
public int IFFill
|
||||
{
|
||||
set { _IFFill = value; }
|
||||
get { return _IFFill; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Tradingarea
|
||||
{
|
||||
set { _Tradingarea = value; }
|
||||
get { return _Tradingarea; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Address
|
||||
{
|
||||
set { _Address = value; }
|
||||
get { return _Address; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Address0
|
||||
{
|
||||
set { _Address0 = value; }
|
||||
get { return _Address0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Zipcode
|
||||
{
|
||||
set { _Zipcode = value; }
|
||||
get { return _Zipcode; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string yundanhao
|
||||
{
|
||||
set { _yundanhao = value; }
|
||||
get { return _yundanhao; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Guests
|
||||
{
|
||||
set { _Guests = value; }
|
||||
get { return _Guests; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string wlremarks
|
||||
{
|
||||
set { _wlremarks = value; }
|
||||
get { return _wlremarks; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice
|
||||
{
|
||||
set { _Totalprice = value; }
|
||||
get { return _Totalprice; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double JFTotalprice
|
||||
{
|
||||
set { _JFTotalprice = value; }
|
||||
get { return _JFTotalprice; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice0
|
||||
{
|
||||
set { _Totalprice0 = value; }
|
||||
get { return _Totalprice0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice1
|
||||
{
|
||||
set { _Totalprice1 = value; }
|
||||
get { return _Totalprice1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice2
|
||||
{
|
||||
set { _Totalprice2 = value; }
|
||||
get { return _Totalprice2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice3
|
||||
{
|
||||
set { _Totalprice3 = value; }
|
||||
get { return _Totalprice3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice4
|
||||
{
|
||||
set { _Totalprice4 = value; }
|
||||
get { return _Totalprice4; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice5
|
||||
{
|
||||
set { _Totalprice5 = value; }
|
||||
get { return _Totalprice5; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice6
|
||||
{
|
||||
set { _Totalprice6 = value; }
|
||||
get { return _Totalprice6; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice7
|
||||
{
|
||||
set { _Totalprice7 = value; }
|
||||
get { return _Totalprice7; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice8
|
||||
{
|
||||
set { _Totalprice8 = value; }
|
||||
get { return _Totalprice8; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice9
|
||||
{
|
||||
set { _Totalprice9 = value; }
|
||||
get { return _Totalprice9; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice10
|
||||
{
|
||||
set { _Totalprice10 = value; }
|
||||
get { return _Totalprice10; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Totalnum
|
||||
{
|
||||
set { _Totalnum = value; }
|
||||
get { return _Totalnum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_Submit
|
||||
{
|
||||
set { _O_Submit = value; }
|
||||
get { return _O_Submit; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime O_SubmitDate
|
||||
{
|
||||
set { _O_SubmitDate = value; }
|
||||
get { return _O_SubmitDate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_Payed
|
||||
{
|
||||
set { _O_Payed = value; }
|
||||
get { return _O_Payed; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime O_Payed_Date
|
||||
{
|
||||
set { _O_Payed_Date = value; }
|
||||
get { return _O_Payed_Date; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_Shipped
|
||||
{
|
||||
set { _O_Shipped = value; }
|
||||
get { return _O_Shipped; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime O_Shipped_Date
|
||||
{
|
||||
set { _O_Shipped_Date = value; }
|
||||
get { return _O_Shipped_Date; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_received
|
||||
{
|
||||
set { _O_received = value; }
|
||||
get { return _O_received; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime O_received_Date
|
||||
{
|
||||
set { _O_received_Date = value; }
|
||||
get { return _O_received_Date; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_Return
|
||||
{
|
||||
set { _O_Return = value; }
|
||||
get { return _O_Return; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime O_Return_Date
|
||||
{
|
||||
set { _O_Return_Date = value; }
|
||||
get { return _O_Return_Date; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_Returned
|
||||
{
|
||||
set { _O_Returned = value; }
|
||||
get { return _O_Returned; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime O_Returned_Date
|
||||
{
|
||||
set { _O_Returned_Date = value; }
|
||||
get { return _O_Returned_Date; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_recReturn
|
||||
{
|
||||
set { _O_recReturn = value; }
|
||||
get { return _O_recReturn; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime O_recReturn_Date
|
||||
{
|
||||
set { _O_recReturn_Date = value; }
|
||||
get { return _O_recReturn_Date; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_yhj
|
||||
{
|
||||
set { _O_yhj = value; }
|
||||
get { return _O_yhj; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_ReturnReason
|
||||
{
|
||||
set { _O_ReturnReason = value; }
|
||||
get { return _O_ReturnReason; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UserID
|
||||
{
|
||||
set { _UserID = value; }
|
||||
get { return _UserID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ZTMemberId
|
||||
{
|
||||
set { _ZTMemberId = value; }
|
||||
get { return _ZTMemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFDelete
|
||||
{
|
||||
set { _IFDelete = value; }
|
||||
get { return _IFDelete; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string IFDeleteTime
|
||||
{
|
||||
set { _IFDeleteTime = value; }
|
||||
get { return _IFDeleteTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Isbuzhong
|
||||
{
|
||||
set { _Isbuzhong = value; }
|
||||
get { return _Isbuzhong; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int hasRead
|
||||
{
|
||||
set { _hasRead = value; }
|
||||
get { return _hasRead; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int O_Seef
|
||||
{
|
||||
set { _O_Seef = value; }
|
||||
get { return _O_Seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string O_Seef_Date
|
||||
{
|
||||
set { _O_Seef_Date = value; }
|
||||
get { return _O_Seef_Date; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string transaction_id
|
||||
{
|
||||
set { _transaction_id = value; }
|
||||
get { return _transaction_id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string out_trade_no
|
||||
{
|
||||
set { _out_trade_no = value; }
|
||||
get { return _out_trade_no; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string refund_id
|
||||
{
|
||||
set { _refund_id = value; }
|
||||
get { return _refund_id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int refundstatus
|
||||
{
|
||||
set { _refundstatus = value; }
|
||||
get { return _refundstatus; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string refund_channel
|
||||
{
|
||||
set { _refund_channel = value; }
|
||||
get { return _refund_channel; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string user_received_account
|
||||
{
|
||||
set { _user_received_account = value; }
|
||||
get { return _user_received_account; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string success_time
|
||||
{
|
||||
set { _success_time = value; }
|
||||
get { return _success_time; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string openid
|
||||
{
|
||||
set { _openid = value; }
|
||||
get { return _openid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype0
|
||||
{
|
||||
set { _ttype0 = value; }
|
||||
get { return _ttype0; }
|
||||
}
|
||||
/// <summary>
|
||||
/// 配送方式 0 = 邮寄 ,1 = 自提
|
||||
/// </summary>
|
||||
public int peitype
|
||||
{
|
||||
set { _peitype = value; }
|
||||
get { return _peitype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ptype
|
||||
{
|
||||
set { _ptype = value; }
|
||||
get { return _ptype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ifxnhy
|
||||
{
|
||||
set { _ifxnhy = value; }
|
||||
get { return _ifxnhy; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ypznum
|
||||
{
|
||||
set { _ypznum = value; }
|
||||
get { return _ypznum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ptgroup
|
||||
{
|
||||
set { _ptgroup = value; }
|
||||
get { return _ptgroup; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ifxhpt
|
||||
{
|
||||
set { _ifxhpt = value; }
|
||||
get { return _ifxhpt; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ifpd
|
||||
{
|
||||
set { _ifpd = value; }
|
||||
get { return _ifpd; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ifbhzshy
|
||||
{
|
||||
set { _ifbhzshy = value; }
|
||||
get { return _ifbhzshy; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
135
Mtxfw.Model/order_product_info.cs
Normal file
135
Mtxfw.Model/order_product_info.cs
Normal file
@@ -0,0 +1,135 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// order_product_info:ʵ<><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 order_product_info
|
||||
{
|
||||
public order_product_info()
|
||||
{ }
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _pid;
|
||||
private int _orderid;
|
||||
private string _selcolor;
|
||||
private string _guige;
|
||||
private Double _DJprice;
|
||||
private Double _Totalprice;
|
||||
private int _Totalnum;
|
||||
private DateTime _SubmitTime;
|
||||
private int _UserID;
|
||||
private int _IFDelete;
|
||||
private string _utype;//0<><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>
|
||||
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int pid
|
||||
{
|
||||
set { _pid = value; }
|
||||
get { return _pid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int orderid
|
||||
{
|
||||
set { _orderid = value; }
|
||||
get { return _orderid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string selcolor
|
||||
{
|
||||
set { _selcolor = value; }
|
||||
get { return _selcolor; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string guige
|
||||
{
|
||||
set { _guige = value; }
|
||||
get { return _guige; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double DJprice
|
||||
{
|
||||
set { _DJprice = value; }
|
||||
get { return _DJprice; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalprice
|
||||
{
|
||||
set { _Totalprice = value; }
|
||||
get { return _Totalprice; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Totalnum
|
||||
{
|
||||
set { _Totalnum = value; }
|
||||
get { return _Totalnum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime SubmitTime
|
||||
{
|
||||
set { _SubmitTime = value; }
|
||||
get { return _SubmitTime; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UserID
|
||||
{
|
||||
set { _UserID = value; }
|
||||
get { return _UserID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFDelete
|
||||
{
|
||||
set { _IFDelete = value; }
|
||||
get { return _IFDelete; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
4
Mtxfw.Model/packages.config
Normal file
4
Mtxfw.Model/packages.config
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="sqlSugar" version="5.0.0.12" targetFramework="net48" />
|
||||
</packages>
|
||||
90
Mtxfw.Model/province.cs
Normal file
90
Mtxfw.Model/province.cs
Normal file
@@ -0,0 +1,90 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// province:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class province
|
||||
{
|
||||
public province()
|
||||
{}
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _provinceid;
|
||||
private string _provincename;
|
||||
private Double _YFMoney;
|
||||
private Double _YFMoney0;
|
||||
private Double _YFMoney1;
|
||||
private Double _YFMoney2;
|
||||
private string _center;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ProvinceID
|
||||
{
|
||||
set{ _provinceid=value;}
|
||||
get{return _provinceid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ProvinceName
|
||||
{
|
||||
set{ _provincename=value;}
|
||||
get{return _provincename;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double YFMoney
|
||||
{
|
||||
set { _YFMoney = value; }
|
||||
get { return _YFMoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double YFMoney0
|
||||
{
|
||||
set { _YFMoney0 = value; }
|
||||
get { return _YFMoney0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double YFMoney1
|
||||
{
|
||||
set { _YFMoney1 = value; }
|
||||
get { return _YFMoney1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double YFMoney2
|
||||
{
|
||||
set { _YFMoney2 = value; }
|
||||
get { return _YFMoney2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string center
|
||||
{
|
||||
set { _center = value; }
|
||||
get { return _center; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
74
Mtxfw.Model/qiandao.cs
Normal file
74
Mtxfw.Model/qiandao.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
using System;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[SugarTable("qiandao")]
|
||||
public partial class qiandao
|
||||
{
|
||||
public qiandao()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _Q_Id;
|
||||
private int _Q_MemberId;//用户ID
|
||||
private string _Q_Intro;//签到内容
|
||||
private int _Q_Num;//签到数量
|
||||
private DateTime _Q_SJ;//签到时间
|
||||
private int _gtype; //类型,1=用户签到
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Q_Id
|
||||
{
|
||||
set { _Q_Id = value; }
|
||||
get { return _Q_Id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Q_MemberId
|
||||
{
|
||||
set { _Q_MemberId = value; }
|
||||
get { return _Q_MemberId; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Q_Intro
|
||||
{
|
||||
set { _Q_Intro = value; }
|
||||
get { return _Q_Intro; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Q_Num
|
||||
{
|
||||
set { _Q_Num = value; }
|
||||
get { return _Q_Num; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime Q_SJ
|
||||
{
|
||||
set { _Q_SJ = value; }
|
||||
get { return _Q_SJ; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
}
|
||||
}
|
||||
|
||||
134
Mtxfw.Model/queue_window.cs
Normal file
134
Mtxfw.Model/queue_window.cs
Normal file
@@ -0,0 +1,134 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// queue_window:ʵ<><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 queue_window
|
||||
{
|
||||
public queue_window()
|
||||
{}
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _number;
|
||||
private int _number2;
|
||||
private string _accountid;
|
||||
private string _membercard;
|
||||
private DateTime? _addtime;
|
||||
private DateTime? _quesuctime;
|
||||
private string _queuestate;
|
||||
private string _Province;
|
||||
private string _Consumersites;
|
||||
private string _qdate;
|
||||
private string _WinningState;
|
||||
private string _Utype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Number
|
||||
{
|
||||
set { _number = value; }
|
||||
get { return _number; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Number2
|
||||
{
|
||||
set{ _number2=value;}
|
||||
get{return _number2;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string AccountId
|
||||
{
|
||||
set{ _accountid=value;}
|
||||
get{return _accountid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string MemberCard
|
||||
{
|
||||
set{ _membercard=value;}
|
||||
get{return _membercard;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime? AddTime
|
||||
{
|
||||
set{ _addtime=value;}
|
||||
get{return _addtime;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime? QueSucTime
|
||||
{
|
||||
set{ _quesuctime=value;}
|
||||
get{return _quesuctime;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string QueueState
|
||||
{
|
||||
set{ _queuestate=value;}
|
||||
get{return _queuestate;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string WinningState
|
||||
{
|
||||
set { _WinningState = value; }
|
||||
get { return _WinningState; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Province
|
||||
{
|
||||
set { _Province = value; }
|
||||
get { return _Province; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Consumersites
|
||||
{
|
||||
set { _Consumersites = value; }
|
||||
get { return _Consumersites; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string qdate
|
||||
{
|
||||
set { _qdate = value; }
|
||||
get { return _qdate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Utype
|
||||
{
|
||||
set { _Utype = value; }
|
||||
get { return _Utype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
45
Mtxfw.Model/timer_control.cs
Normal file
45
Mtxfw.Model/timer_control.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// city:ʵ<><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 timer_control
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _ZXflag;//ִ<>б<EFBFBD>־1
|
||||
private int _ZXflag0;//ִ<>б<EFBFBD>־2
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
public int ZXflag
|
||||
{
|
||||
set { _ZXflag = value; }
|
||||
get { return _ZXflag; }
|
||||
}
|
||||
public int ZXflag0
|
||||
{
|
||||
set { _ZXflag0 = value; }
|
||||
get { return _ZXflag0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
71
Mtxfw.Model/tradingarea.cs
Normal file
71
Mtxfw.Model/tradingarea.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// tradingarea:ʵ<><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 tradingarea
|
||||
{
|
||||
public tradingarea()
|
||||
{}
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _tradingareaid;
|
||||
private string _tradingareaname;
|
||||
private string _countyid;
|
||||
private string _CityID;
|
||||
private string _center;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string tradingareaID
|
||||
{
|
||||
set{ _tradingareaid=value;}
|
||||
get{return _tradingareaid;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string tradingareaName
|
||||
{
|
||||
set{ _tradingareaname=value;}
|
||||
get{return _tradingareaname;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CountyID
|
||||
{
|
||||
set { _countyid = value; }
|
||||
get { return _countyid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CityID
|
||||
{
|
||||
set { _CityID = value; }
|
||||
get { return _CityID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string center
|
||||
{
|
||||
set { _center = value; }
|
||||
get { return _center; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
93
Mtxfw.Model/user_BusinessHours.cs
Normal file
93
Mtxfw.Model/user_BusinessHours.cs
Normal file
@@ -0,0 +1,93 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 user_BusinessHours
|
||||
{
|
||||
public user_BusinessHours()
|
||||
{ }
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private string _Starttime;//<2F><>ʼʱ<CABC><CAB1>
|
||||
private int _EndtimeType;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD>1<EFBFBD><31>2<EFBFBD><32>
|
||||
private string _Endtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _utype;//0Ӫҵʱ<D2B5><CAB1>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype; //<2F><><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int EndtimeType
|
||||
{
|
||||
set { _EndtimeType = value; }
|
||||
get { return _EndtimeType; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Starttime
|
||||
{
|
||||
set { _Starttime = value; }
|
||||
get { return _Starttime; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Endtime
|
||||
{
|
||||
set { _Endtime = value; }
|
||||
get { return _Endtime; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
187
Mtxfw.Model/user_Goods.cs
Normal file
187
Mtxfw.Model/user_Goods.cs
Normal file
@@ -0,0 +1,187 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_Goods
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _GoodsLB;//<2F><>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>
|
||||
private string _GoodsName;//<2F><>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>
|
||||
private string _GoodsPic;//Ԥ<><D4A4>ͼƬ
|
||||
private string _GoodsUrl;//<2F><>תURL
|
||||
private string _GoodsBody;//<2F><>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>
|
||||
private Double _GoodsPrices;//<2F><>Ʒ<EFBFBD>۸<EFBFBD>
|
||||
private Double _GoodsPrices0;//<2F>г<EFBFBD><D0B3>۸<EFBFBD>
|
||||
private Double _GoodsPrices1;//
|
||||
private Double _GoodsPrices2;//
|
||||
private string _starttime;//<2F><>ʼʱ<CABC><CAB1>
|
||||
private string _endtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _GoodsKC;//<2F><>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>
|
||||
private int _GoodsNum;//<2F><><EFBFBD>ټ<EFBFBD><D9BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _GoodsZT;//״̬
|
||||
private int _GoodsOrders;//<2F><>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _AddTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _utype;//<2F><><EFBFBD><EFBFBD>0ע<30><D7A2><EFBFBD><EFBFBD>Ʒ1<C6B7><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ2<C6B7><32>̨ͼƬ3<C6AC><33><EFBFBD><EFBFBD><EFBFBD>̳<EFBFBD>ͼƬ4<C6AC>̳<EFBFBD><CCB3><EFBFBD>ҳͼƬ5<C6AC>̳Ǵ<CCB3>ҳͼƬ6<C6AC><36><EFBFBD><EFBFBD>ѧ<EFBFBD><D1A7>ͼƬ7ͼƬ8ͼƬ9ͼƬ10<31><30><EFBFBD><EFBFBD>ͼ<EFBFBD><CDBC>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GoodsLB
|
||||
{
|
||||
set { _GoodsLB = value; }
|
||||
get { return _GoodsLB; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string GoodsName
|
||||
{
|
||||
set { _GoodsName = value; }
|
||||
get { return _GoodsName; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string GoodsPic
|
||||
{
|
||||
set { _GoodsPic = value; }
|
||||
get { return _GoodsPic; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string GoodsUrl
|
||||
{
|
||||
set { _GoodsUrl = value; }
|
||||
get { return _GoodsUrl; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string GoodsBody
|
||||
{
|
||||
set { _GoodsBody = value; }
|
||||
get { return _GoodsBody; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double GoodsPrices
|
||||
{
|
||||
set { _GoodsPrices = value; }
|
||||
get { return _GoodsPrices; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double GoodsPrices0
|
||||
{
|
||||
set { _GoodsPrices0 = value; }
|
||||
get { return _GoodsPrices0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double GoodsPrices1
|
||||
{
|
||||
set { _GoodsPrices1 = value; }
|
||||
get { return _GoodsPrices1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double GoodsPrices2
|
||||
{
|
||||
set { _GoodsPrices2 = value; }
|
||||
get { return _GoodsPrices2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string starttime
|
||||
{
|
||||
set { _starttime = value; }
|
||||
get { return _starttime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string endtime
|
||||
{
|
||||
set { _endtime = value; }
|
||||
get { return _endtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GoodsKC
|
||||
{
|
||||
set { _GoodsKC = value; }
|
||||
get { return _GoodsKC; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GoodsNum
|
||||
{
|
||||
set { _GoodsNum = value; }
|
||||
get { return _GoodsNum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GoodsZT
|
||||
{
|
||||
set { _GoodsZT = value; }
|
||||
get { return _GoodsZT; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int GoodsOrders
|
||||
{
|
||||
set { _GoodsOrders = value; }
|
||||
get { return _GoodsOrders; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime AddTime
|
||||
{
|
||||
set { _AddTime = value; }
|
||||
get { return _AddTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
70
Mtxfw.Model/user_Goods_lb.cs
Normal file
70
Mtxfw.Model/user_Goods_lb.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_Goods_lb
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _LBName;//<2F><><EFBFBD><EFBFBD>
|
||||
private string _LBBody;//<2F><><EFBFBD><EFBFBD>
|
||||
private int _LBLinkID;//<2F><><EFBFBD><EFBFBD>ID
|
||||
private int _utype;//<2F><><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD><EFBFBD>̷̳<CCB3><CCB7><EFBFBD>1<EFBFBD>̼ҷ<CCBC><D2B7><EFBFBD>2<EFBFBD><32><EFBFBD><EFBFBD>ѧ<EFBFBD>÷<EFBFBD><C3B7><EFBFBD>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string LBName
|
||||
{
|
||||
set { _LBName = value; }
|
||||
get { return _LBName; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string LBBody
|
||||
{
|
||||
set { _LBBody = value; }
|
||||
get { return _LBBody; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int LBLinkID
|
||||
{
|
||||
set { _LBLinkID = value; }
|
||||
get { return _LBLinkID; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
93
Mtxfw.Model/user_RestDay.cs
Normal file
93
Mtxfw.Model/user_RestDay.cs
Normal file
@@ -0,0 +1,93 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 user_RestDay
|
||||
{
|
||||
public user_RestDay()
|
||||
{ }
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _IFLeday;//<2F><><EFBFBD>з<EFBFBD><D0B7><EFBFBD><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD>
|
||||
private string _Startdate;//<2F><>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>
|
||||
private string _Enddate;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _utype;//0<>ڼ<EFBFBD><DABC><EFBFBD>1<EFBFBD><31>Ϣ<EFBFBD><CFA2>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype; //<2F><><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFLeday
|
||||
{
|
||||
set { _IFLeday = value; }
|
||||
get { return _IFLeday; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Startdate
|
||||
{
|
||||
set { _Startdate = value; }
|
||||
get { return _Startdate; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Enddate
|
||||
{
|
||||
set { _Enddate = value; }
|
||||
get { return _Enddate; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
405
Mtxfw.Model/user_Results.cs
Normal file
405
Mtxfw.Model/user_Results.cs
Normal file
@@ -0,0 +1,405 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class user_Results
|
||||
{
|
||||
public user_Results()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;
|
||||
private Double _b0;//累计奖金
|
||||
private Double _b1;//辅导津贴
|
||||
private Double _b2;//领导津贴
|
||||
private Double _b3;//领导分红
|
||||
private Double _b4;//推荐加盟店奖
|
||||
private Double _b5;//鼓励津贴
|
||||
private Double _b6;//会员再消费奖励
|
||||
private Double _b7;//重复消费奖
|
||||
private Double _b8;//服务中心
|
||||
private Double _b9;//会员福利
|
||||
private Double _b10;//重复消费[扣除金额]
|
||||
private Double _b11;//扣税
|
||||
private Double _b12;//完成两件产品奖励
|
||||
private Double _b13;//
|
||||
private Double _b14;
|
||||
private Double _b15;
|
||||
private Double _b16;//扣除债务奖金
|
||||
private Double _b17;
|
||||
private Double _b18;
|
||||
private Double _Totalmoney;
|
||||
private string _conent;//留言内容
|
||||
private int _hasRead;//是否是第一次投 0否1是/是否不显示在出纳统计 0否1是/总任务ID
|
||||
private int _Sended;//是否是推送过 0否1是/子任务ID/团队ID
|
||||
private int _Seef;//0表示未审核,1表示已审核,-1表示无需审核,-2表示不显示给会员看
|
||||
private int _IFHidden;//是否隐藏?0否,1是
|
||||
private int _UserId;//报单消费购买用户
|
||||
private string _ListNumber;//接受总任务ID
|
||||
private string _Managers;//上传图片
|
||||
private string _OrderIds;
|
||||
private string _LDR;//领导人
|
||||
private DateTime _addtime;//添加时间
|
||||
private DateTime _jdtime;//接单时间/成交时间
|
||||
private DateTime _paytime;//支付时间
|
||||
private DateTime _jstime;//结算时间
|
||||
private DateTime _yytime;//预约时间(匹配成功后更新预约时间)
|
||||
private DateTime _zstime;//转售或提货时间
|
||||
private DateTime _seeftime;//审核时间/完成时间
|
||||
private string _utype; // utype 0表示奖金统计记录 1表示电子币提现记录 2表示服务中心充值记录 3表示划转记录 4购买VIP套餐记录 5表示话费充值记录 6上传任务图片记录 7投放流量记录 8红包记录 9表示扫码充值记录 10结算付款给商家记录 11表示现金转账记录 12转出OTC记录 13表示开通推广员记录 14表示可选择产品记录 15表示购物网账户充值记录 16消费币转账记录 17表示共享租用记录 18表示发货记录 19表示兑换产品记录 20表示普民慧结算付款给商家记录
|
||||
private int _IFDelete;//假删除 0否 1是
|
||||
private string _IFDeleteTime;//假删除时间
|
||||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b0
|
||||
{
|
||||
set { _b0 = value; }
|
||||
get { return _b0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b1
|
||||
{
|
||||
set { _b1 = value; }
|
||||
get { return _b1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b2
|
||||
{
|
||||
set { _b2 = value; }
|
||||
get { return _b2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b3
|
||||
{
|
||||
set { _b3 = value; }
|
||||
get { return _b3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b4
|
||||
{
|
||||
set { _b4 = value; }
|
||||
get { return _b4; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b5
|
||||
{
|
||||
set { _b5 = value; }
|
||||
get { return _b5; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b6
|
||||
{
|
||||
set { _b6 = value; }
|
||||
get { return _b6; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b7
|
||||
{
|
||||
set { _b7 = value; }
|
||||
get { return _b7; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b8
|
||||
{
|
||||
set { _b8 = value; }
|
||||
get { return _b8; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b9
|
||||
{
|
||||
set { _b9 = value; }
|
||||
get { return _b9; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b10
|
||||
{
|
||||
set { _b10 = value; }
|
||||
get { return _b10; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b11
|
||||
{
|
||||
set { _b11 = value; }
|
||||
get { return _b11; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b12
|
||||
{
|
||||
set { _b12 = value; }
|
||||
get { return _b12; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b13
|
||||
{
|
||||
set { _b13 = value; }
|
||||
get { return _b13; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b14
|
||||
{
|
||||
set { _b14 = value; }
|
||||
get { return _b14; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b15
|
||||
{
|
||||
set { _b15 = value; }
|
||||
get { return _b15; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b16
|
||||
{
|
||||
set { _b16 = value; }
|
||||
get { return _b16; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b17
|
||||
{
|
||||
set { _b17 = value; }
|
||||
get { return _b17; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double b18
|
||||
{
|
||||
set { _b18 = value; }
|
||||
get { return _b18; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalmoney
|
||||
{
|
||||
set { _Totalmoney = value; }
|
||||
get { return _Totalmoney; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string conent
|
||||
{
|
||||
set { _conent = value; }
|
||||
get { return _conent; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int hasRead
|
||||
{
|
||||
set { _hasRead = value; }
|
||||
get { return _hasRead; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Sended
|
||||
{
|
||||
set { _Sended = value; }
|
||||
get { return _Sended; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Seef
|
||||
{
|
||||
set { _Seef = value; }
|
||||
get { return _Seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFHidden
|
||||
{
|
||||
set { _IFHidden = value; }
|
||||
get { return _IFHidden; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UserId
|
||||
{
|
||||
set { _UserId = value; }
|
||||
get { return _UserId; }
|
||||
}
|
||||
/// <summary>
|
||||
/// ListNumber
|
||||
/// </summary>
|
||||
public string ListNumber
|
||||
{
|
||||
set { _ListNumber = value; }
|
||||
get { return _ListNumber; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Managers
|
||||
/// </summary>
|
||||
public string Managers
|
||||
{
|
||||
set { _Managers = value; }
|
||||
get { return _Managers; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public string OrderIds
|
||||
{
|
||||
set { _OrderIds = value; }
|
||||
get { return _OrderIds; }
|
||||
}
|
||||
/// <summary>
|
||||
/// LDR
|
||||
/// </summary>
|
||||
public string LDR
|
||||
{
|
||||
set { _LDR = value; }
|
||||
get { return _LDR; }
|
||||
}
|
||||
/// <summary>
|
||||
/// addtime
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// jdtime
|
||||
/// </summary>
|
||||
public DateTime jdtime
|
||||
{
|
||||
set { _jdtime = value; }
|
||||
get { return _jdtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// paytime
|
||||
/// </summary>
|
||||
public DateTime paytime
|
||||
{
|
||||
set { _paytime = value; }
|
||||
get { return _paytime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// jstime
|
||||
/// </summary>
|
||||
public DateTime jstime
|
||||
{
|
||||
set { _jstime = value; }
|
||||
get { return _jstime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// yytime
|
||||
/// </summary>
|
||||
public DateTime yytime
|
||||
{
|
||||
set { _yytime = value; }
|
||||
get { return _yytime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// zstime
|
||||
/// </summary>
|
||||
public DateTime zstime
|
||||
{
|
||||
set { _zstime = value; }
|
||||
get { return _zstime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// seeftime
|
||||
/// </summary>
|
||||
public DateTime seeftime
|
||||
{
|
||||
set { _seeftime = value; }
|
||||
get { return _seeftime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
public int IFDelete
|
||||
{
|
||||
set { _IFDelete = value; }
|
||||
get { return _IFDelete; }
|
||||
}
|
||||
public string IFDeleteTime
|
||||
{
|
||||
set { _IFDeleteTime = value; }
|
||||
get { return _IFDeleteTime; }
|
||||
}
|
||||
/*public string utype2
|
||||
{
|
||||
set { _utype2 = value; }
|
||||
get { return _utype2; }
|
||||
}*/
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
125
Mtxfw.Model/user_Results_jl.cs
Normal file
125
Mtxfw.Model/user_Results_jl.cs
Normal file
@@ -0,0 +1,125 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class user_Results_jl
|
||||
{
|
||||
public user_Results_jl()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;//发货中心ID
|
||||
private string _MemberIds;//发货ID列表
|
||||
private string _conent;//备注信息//mp3地址
|
||||
private Double _Count1;//男士统计//微信小程序未显示播放信息1已显示播放信息
|
||||
private Double _Count2;//女士统计//0未支付1已支付
|
||||
private Double _Count3;//小蚝粒统计//0未显示预备信息1已显示预备信息
|
||||
private Double _Count4;//化妆品统计//0未显示播放信息1已显示播放信息
|
||||
private int _SHFX;//送货方式0积分兑付1支付宝2微信支付
|
||||
private DateTime _addtime;//添加时间
|
||||
private int _utype; // utype 0表示奖金统计记录
|
||||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string MemberIds
|
||||
{
|
||||
set { _MemberIds = value; }
|
||||
get { return _MemberIds; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string conent
|
||||
{
|
||||
set { _conent = value; }
|
||||
get { return _conent; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Count1
|
||||
{
|
||||
set { _Count1 = value; }
|
||||
get { return _Count1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Count2
|
||||
{
|
||||
set { _Count2 = value; }
|
||||
get { return _Count2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Count3
|
||||
{
|
||||
set { _Count3 = value; }
|
||||
get { return _Count3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Count4
|
||||
{
|
||||
set { _Count4 = value; }
|
||||
get { return _Count4; }
|
||||
}
|
||||
/// <summary>
|
||||
/// SHFX
|
||||
/// </summary>
|
||||
public int SHFX
|
||||
{
|
||||
set { _SHFX = value; }
|
||||
get { return _SHFX; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
236
Mtxfw.Model/user_Results_jl2.cs
Normal file
236
Mtxfw.Model/user_Results_jl2.cs
Normal file
@@ -0,0 +1,236 @@
|
||||
using System;
|
||||
using SqlSugar;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[SugarTable("user_Results_jl2")]
|
||||
public partial class user_Results_jl2
|
||||
{
|
||||
public user_Results_jl2()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;//获得组织管理奖ID
|
||||
private int _MemberId2;//审核ID//购买ID
|
||||
private int _TGYID;//推广员ID
|
||||
private int _DLID;//代理ID
|
||||
private int _MinNumber;//顺序最小值/购买月数/0品牌展示1创客品牌展示
|
||||
private int _MaxNumber;//顺序最大值/已使用月数
|
||||
private Double _Addmoney;//增加
|
||||
private Double _Cutmoney;//减少
|
||||
private Double _Totalmoney;//余额
|
||||
private Double _Totalmoney0;//总额
|
||||
private string _BZContent;//备注\拼单产品颜色
|
||||
private string _PayID;//支付ID\拼单产品ID
|
||||
private string _OrdersIDs;//订单ID列表\拼单产品规格
|
||||
private int _OrdersID;//订单ID\拼单产品父
|
||||
private DateTime _addtime;//添加时间
|
||||
private DateTime _starttime;//开始时间
|
||||
private DateTime _updatetime;//更新时间
|
||||
private int _Seef;//0表示未审核,1表示已审核,-1表示无需审核
|
||||
private DateTime _seeftime;//审核时间
|
||||
private int _utype; // utype 0表示消费豆记录,1表示余额记录,2表示广告劵记录,3表示兑换劵记录,4补贴劵记录,5记录 6记录 7表示烧伤值记录 8表示业绩记录 9增值记录 10观看视频记录 11投放广告记录 12上传视频记录 13流量券记录 14KSD记录 15货款扣税记录 16冻结余额记录 17解冻余额记录 18广告值记录 19增值积分余额记录 20增值积分价格记录 21激活码记录 22推广名额记录 23商家扫码记录 24可用增值积分记录 25表示视频转码记录 26补贴劵记录 27权益值记录 28补贴值记录 29每月业绩统计记录 30每月级别统计记录 31消费红包记录 32增值资产拆分记录 33发货记录
|
||||
private int _utype2; //1产品券使用记录\0表示发起拼单1加入拼单
|
||||
private int _IFDelete;//假删除 0否 1是
|
||||
private DateTime _IFDeleteTime;//假删除时间
|
||||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId2
|
||||
{
|
||||
set { _MemberId2 = value; }
|
||||
get { return _MemberId2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int TGYID
|
||||
{
|
||||
set { _TGYID = value; }
|
||||
get { return _TGYID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int DLID
|
||||
{
|
||||
set { _DLID = value; }
|
||||
get { return _DLID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MinNumber
|
||||
{
|
||||
set { _MinNumber = value; }
|
||||
get { return _MinNumber; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MaxNumber
|
||||
{
|
||||
set { _MaxNumber = value; }
|
||||
get { return _MaxNumber; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Addmoney
|
||||
{
|
||||
set { _Addmoney = value; }
|
||||
get { return _Addmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Cutmoney
|
||||
{
|
||||
set { _Cutmoney = value; }
|
||||
get { return _Cutmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalmoney
|
||||
{
|
||||
set { _Totalmoney = value; }
|
||||
get { return _Totalmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double Totalmoney0
|
||||
{
|
||||
set { _Totalmoney0 = value; }
|
||||
get { return _Totalmoney0; }
|
||||
}
|
||||
/// <summary>
|
||||
/// BZContent
|
||||
/// </summary>
|
||||
public string BZContent
|
||||
{
|
||||
set { _BZContent = value; }
|
||||
get { return _BZContent; }
|
||||
}
|
||||
/// <summary>
|
||||
/// BZContent
|
||||
/// </summary>
|
||||
public string PayID
|
||||
{
|
||||
set { _PayID = value; }
|
||||
get { return _PayID; }
|
||||
}
|
||||
/// <summary>
|
||||
/// OrdersID
|
||||
/// </summary>
|
||||
public string OrdersIDs
|
||||
{
|
||||
set { _OrdersIDs = value; }
|
||||
get { return _OrdersIDs; }
|
||||
}
|
||||
/// <summary>
|
||||
/// OrdersID
|
||||
/// </summary>
|
||||
public int OrdersID
|
||||
{
|
||||
set { _OrdersID = value; }
|
||||
get { return _OrdersID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime updatetime
|
||||
{
|
||||
set { _updatetime = value; }
|
||||
get { return _updatetime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype2
|
||||
/// </summary>
|
||||
public int utype2
|
||||
{
|
||||
set { _utype2 = value; }
|
||||
get { return _utype2; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Seef
|
||||
/// </summary>
|
||||
public int Seef
|
||||
{
|
||||
set { _Seef = value; }
|
||||
get { return _Seef; }
|
||||
}
|
||||
/// <summary>
|
||||
/// seeftime
|
||||
/// </summary>
|
||||
public DateTime seeftime
|
||||
{
|
||||
set { _seeftime = value; }
|
||||
get { return _seeftime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// IFDelete
|
||||
/// </summary>
|
||||
public int IFDelete
|
||||
{
|
||||
set { _IFDelete = value; }
|
||||
get { return _IFDelete; }
|
||||
}
|
||||
/// <summary>
|
||||
/// IFDeleteTime
|
||||
/// </summary>
|
||||
public DateTime IFDeleteTime
|
||||
{
|
||||
set { _IFDeleteTime = value; }
|
||||
get { return _IFDeleteTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
71
Mtxfw.Model/user_Results_jl3.cs
Normal file
71
Mtxfw.Model/user_Results_jl3.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class user_Results_jl3
|
||||
{
|
||||
public user_Results_jl3()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private Double _blmoney;//比例
|
||||
private int _fs;//份数
|
||||
private DateTime _addtime;//添加时间
|
||||
private string _utype; // utype 0表示金豆转换记录,1表示记录
|
||||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double blmoney
|
||||
{
|
||||
set { _blmoney = value; }
|
||||
get { return _blmoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int fs
|
||||
{
|
||||
set { _fs = value; }
|
||||
get { return _fs; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
134
Mtxfw.Model/user_Results_jl4.cs
Normal file
134
Mtxfw.Model/user_Results_jl4.cs
Normal file
@@ -0,0 +1,134 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class user_Results_jl4
|
||||
{
|
||||
public user_Results_jl4()
|
||||
{ }
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private String _MemberName;//会员名
|
||||
private int _MemberId;//会员ID
|
||||
private int _MemberId0;//操作ID
|
||||
private int _MemberId1;//原推荐或者接点ID/升级时的级别uLevel4
|
||||
private int _MemberId2;//现推荐或者接点ID/股权是否已审核0否1是
|
||||
private int _IFMFSJ;//是否免费升级
|
||||
private int _IFUpdateMoney;//是否更新奖金/所得股权类型,0升级所得股权,1开通会员所得股权,2删除会员降级减少股权,3修改推荐人降级减少股权,4购买股权,5转让股权,6修改股权
|
||||
private Double _UpdateMoney;//注册币
|
||||
private Double _UpdateMoney2;//现金币
|
||||
private DateTime _addtime;//添加时间
|
||||
private string _utype; // utype 0表示修改接点记录,1表示修改推荐记录,2表示删除会员记录,5表示会员加盟级别升级详细记录,6表示会员管理级别升级详细记录,7表示空单变实单记录,8表示配股权记录,9表示种子卷涨幅记录,10表示种子卷释放记录 11
|
||||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public String MemberName
|
||||
{
|
||||
set { _MemberName = value; }
|
||||
get { return _MemberName; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId0
|
||||
{
|
||||
set { _MemberId0 = value; }
|
||||
get { return _MemberId0; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId1
|
||||
{
|
||||
set { _MemberId1 = value; }
|
||||
get { return _MemberId1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId2
|
||||
{
|
||||
set { _MemberId2 = value; }
|
||||
get { return _MemberId2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFMFSJ
|
||||
{
|
||||
set { _IFMFSJ = value; }
|
||||
get { return _IFMFSJ; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFUpdateMoney
|
||||
{
|
||||
set { _IFUpdateMoney = value; }
|
||||
get { return _IFUpdateMoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double UpdateMoney
|
||||
{
|
||||
set { _UpdateMoney = value; }
|
||||
get { return _UpdateMoney; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double UpdateMoney2
|
||||
{
|
||||
set { _UpdateMoney2 = value; }
|
||||
get { return _UpdateMoney2; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public string utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
88
Mtxfw.Model/user_YZMs.cs
Normal file
88
Mtxfw.Model/user_YZMs.cs
Normal file
@@ -0,0 +1,88 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_YZMs
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _YZID;//<2F><>֤ID
|
||||
private string _phone;//<2F>ֻ<EFBFBD><D6BB><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _YZM;//<2F><>֤<EFBFBD><D6A4>
|
||||
private string _ip;//ip<69><70>ַ
|
||||
private DateTime _AddTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _IFEnable;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD>Ч 0<><30>1<EFBFBD><31>
|
||||
private int _utype;//<2F><><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string YZID
|
||||
{
|
||||
set { _YZID = value; }
|
||||
get { return _YZID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string phone
|
||||
{
|
||||
set { _phone = value; }
|
||||
get { return _phone; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string YZM
|
||||
{
|
||||
set { _YZM = value; }
|
||||
get { return _YZM; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ip
|
||||
{
|
||||
set { _ip = value; }
|
||||
get { return _ip; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime AddTime
|
||||
{
|
||||
set { _AddTime = value; }
|
||||
get { return _AddTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFEnable
|
||||
{
|
||||
set { _IFEnable = value; }
|
||||
get { return _IFEnable; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
141
Mtxfw.Model/user_address.cs
Normal file
141
Mtxfw.Model/user_address.cs
Normal file
@@ -0,0 +1,141 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_address
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _UserID;
|
||||
private string _Contactname;
|
||||
private string _Contacttel;
|
||||
private string _Province;
|
||||
private string _City;
|
||||
private string _County;
|
||||
private int _IFFill;//<2F>Ƿ<EFBFBD><C7B7>ֶ<EFBFBD><D6B6><EFBFBD>д<EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private string _Tradingarea;
|
||||
private string _Address;
|
||||
private string _Zipcode;
|
||||
private string _Guests;
|
||||
private int _IFIndex;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD>Ĭ<EFBFBD>ϵ<EFBFBD>ַ<EFBFBD><D6B7>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int UserID
|
||||
{
|
||||
set { _UserID = value; }
|
||||
get { return _UserID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Contactname
|
||||
{
|
||||
set { _Contactname = value; }
|
||||
get { return _Contactname; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Contacttel
|
||||
{
|
||||
set { _Contacttel = value; }
|
||||
get { return _Contacttel; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Province
|
||||
{
|
||||
set { _Province = value; }
|
||||
get { return _Province; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string City
|
||||
{
|
||||
set { _City = value; }
|
||||
get { return _City; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string County
|
||||
{
|
||||
set { _County = value; }
|
||||
get { return _County; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFFill
|
||||
{
|
||||
set { _IFFill = value; }
|
||||
get { return _IFFill; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Tradingarea
|
||||
{
|
||||
set { _Tradingarea = value; }
|
||||
get { return _Tradingarea; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Address
|
||||
{
|
||||
set { _Address = value; }
|
||||
get { return _Address; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Zipcode
|
||||
{
|
||||
set { _Zipcode = value; }
|
||||
get { return _Zipcode; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Guests
|
||||
{
|
||||
set { _Guests = value; }
|
||||
get { return _Guests; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFIndex
|
||||
{
|
||||
set { _IFIndex = value; }
|
||||
get { return _IFIndex; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
94
Mtxfw.Model/user_bank.cs
Normal file
94
Mtxfw.Model/user_bank.cs
Normal file
@@ -0,0 +1,94 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_bank
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _MemberID;
|
||||
private string _payeename;
|
||||
private string _bankcard;
|
||||
private string _bankname;
|
||||
private string _mobile;
|
||||
private string _email;
|
||||
private int _isedit;
|
||||
private string _Province;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberID
|
||||
{
|
||||
set { _MemberID = value; }
|
||||
get { return _MemberID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string PayeeName
|
||||
{
|
||||
set{ _payeename=value;}
|
||||
get{return _payeename;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string BankCard
|
||||
{
|
||||
set{ _bankcard=value;}
|
||||
get{return _bankcard;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string BankName
|
||||
{
|
||||
set{ _bankname=value;}
|
||||
get{return _bankname;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Mobile
|
||||
{
|
||||
set{ _mobile=value;}
|
||||
get{return _mobile;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Email
|
||||
{
|
||||
set{ _email=value;}
|
||||
get{return _email;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int isEdit
|
||||
{
|
||||
set{ _isedit=value;}
|
||||
get{return _isedit;}
|
||||
}
|
||||
|
||||
public string Province
|
||||
{
|
||||
get { return _Province; }
|
||||
set { _Province = value; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
96
Mtxfw.Model/user_cart.cs
Normal file
96
Mtxfw.Model/user_cart.cs
Normal file
@@ -0,0 +1,96 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_cart:ʵ<><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 user_cart
|
||||
{
|
||||
#region Model
|
||||
private long _id;
|
||||
private int _poid;
|
||||
private int _ProductID;
|
||||
private int _ProductNum;
|
||||
private string _selcolor;
|
||||
private string _guige;
|
||||
private string _CartId;
|
||||
private int _ttype;//0ƴ<30>Ź<EFBFBD><C5B9><EFBFBD> 1<><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public long Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int poid
|
||||
{
|
||||
set { _poid = value; }
|
||||
get { return _poid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ProductID
|
||||
{
|
||||
set { _ProductID = value; }
|
||||
get { return _ProductID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ProductNum
|
||||
{
|
||||
set { _ProductNum = value; }
|
||||
get { return _ProductNum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string selcolor
|
||||
{
|
||||
set { _selcolor = value; }
|
||||
get { return _selcolor; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string guige
|
||||
{
|
||||
set { _guige = value; }
|
||||
get { return _guige; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string CartId
|
||||
{
|
||||
set { _CartId = value; }
|
||||
get { return _CartId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
70
Mtxfw.Model/user_code.cs
Normal file
70
Mtxfw.Model/user_code.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_code:ʵ<><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 user_code
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private string _YZID;//<2F><>֤ID
|
||||
private string _YZM;//<2F><>֤<EFBFBD><D6A4>
|
||||
private string _ip;//ip<69><70>ַ
|
||||
private DateTime _AddTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _utype;//<2F><><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string YZID
|
||||
{
|
||||
set { _YZID = value; }
|
||||
get { return _YZID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string YZM
|
||||
{
|
||||
set { _YZM = value; }
|
||||
get { return _YZM; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ip
|
||||
{
|
||||
set { _ip = value; }
|
||||
get { return _ip; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime AddTime
|
||||
{
|
||||
set { _AddTime = value; }
|
||||
get { return _AddTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
69
Mtxfw.Model/user_favorite.cs
Normal file
69
Mtxfw.Model/user_favorite.cs
Normal file
@@ -0,0 +1,69 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_favorite
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _ProductID;//<2F><>ƷID
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _ttype;//<2F><><EFBFBD><EFBFBD>0<EFBFBD><30>Ʒ1<C6B7><31><EFBFBD><EFBFBD>2<EFBFBD><32><EFBFBD><EFBFBD>ֱ<EFBFBD><D6B1><EFBFBD><EFBFBD>3<EFBFBD><33>ע<EFBFBD><D7A2>Ա4<D4B1><34><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ
|
||||
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ProductID
|
||||
{
|
||||
set { _ProductID = value; }
|
||||
get { return _ProductID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
72
Mtxfw.Model/user_guanzhu.cs
Normal file
72
Mtxfw.Model/user_guanzhu.cs
Normal file
@@ -0,0 +1,72 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 user_guanzhu
|
||||
{
|
||||
public user_guanzhu()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;//<2F><>ע<EFBFBD><D7A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա
|
||||
private int _MemberId2;//<2F><><EFBFBD><EFBFBD>ע<EFBFBD><D7A2>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ
|
||||
private DateTime _addtime;//<2F><>ע<EFBFBD><D7A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _utype; // utype 0<><30>ʾ<EFBFBD><CABE>ע<EFBFBD><D7A2>¼<EFBFBD><C2BC>1<EFBFBD><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>¼
|
||||
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId2
|
||||
{
|
||||
set { _MemberId2 = value; }
|
||||
get { return _MemberId2; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///addtime
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
2283
Mtxfw.Model/user_info.cs
Normal file
2283
Mtxfw.Model/user_info.cs
Normal file
File diff suppressed because it is too large
Load Diff
81
Mtxfw.Model/user_info_fenghao.cs
Normal file
81
Mtxfw.Model/user_info_fenghao.cs
Normal file
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 user_info_fenghao
|
||||
{
|
||||
public user_info_fenghao()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;
|
||||
private int _MemberId2;//ƥ<><C6A5><EFBFBD>˺<EFBFBD>
|
||||
private string _yuanyin;//<2F><><EFBFBD><EFBFBD>ԭ<EFBFBD><D4AD>
|
||||
private Int64 _ResultId;//user_ResultsID
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _ttype; // ttype 0<><30><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId2
|
||||
{
|
||||
set { _MemberId2 = value; }
|
||||
get { return _MemberId2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string yuanyin
|
||||
{
|
||||
set { _yuanyin = value; }
|
||||
get { return _yuanyin; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 ResultId
|
||||
{
|
||||
set { _ResultId = value; }
|
||||
get { return _ResultId; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
159
Mtxfw.Model/user_jjfp.cs
Normal file
159
Mtxfw.Model/user_jjfp.cs
Normal file
@@ -0,0 +1,159 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// city:ʵ<><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 user_jjfp
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _addweek;//<2F>ֺ<EFBFBD><D6BA><EFBFBD><EFBFBD><EFBFBD>/<2F>ֺ<EFBFBD><D6BA><EFBFBD><EFBFBD><EFBFBD>/<2F>齱<EFBFBD><E9BDB1><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _addmonth;//<2F>ֺ<EFBFBD><D6BA><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _zjnum;//<2F>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private Double _count1;//<2F>ֺ<EFBFBD><D6BA>ܶ<EFBFBD>
|
||||
private Double _count2;//<2F>ֺ<EFBFBD><D6BA><EFBFBD><EFBFBD><EFBFBD>
|
||||
private Double _count3;//
|
||||
private Double _count4;//
|
||||
private Double _count5;//
|
||||
private Double _count6;//
|
||||
private Double _count7;//
|
||||
private Double _count8;//<2F><><EFBFBD>۸<D7BC>
|
||||
private DateTime _addtime;//<2F>ֺ<EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private DateTime _addweektime1;//<2F>ֺ<EFBFBD><D6BA>ܵ<EFBFBD>һ<EFBFBD><D2BB>ʱ<EFBFBD><CAB1>
|
||||
private DateTime _addweektime2;//<2F>ֺ<EFBFBD><D6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>ʱ<EFBFBD><CAB1>
|
||||
private int _TType;//<2F><><EFBFBD><EFBFBD>0<EFBFBD>ֺ<EFBFBD><D6BA><EFBFBD><EFBFBD>1<EEA3AC>ֺ<EFBFBD><D6BA><EFBFBD>¼<EFBFBD><C2BC>2<EFBFBD>ֺ<EFBFBD><D6BA><EFBFBD>¼<EFBFBD><C2BC>3<EFBFBD><33>¼<EFBFBD><C2BC>4,<2C><>5 6<><36>ֵ<EFBFBD>۸<EFBFBD><DBB8><EFBFBD>¼
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
public int addweek
|
||||
{
|
||||
set { _addweek = value; }
|
||||
get { return _addweek; }
|
||||
}
|
||||
public int addmonth
|
||||
{
|
||||
set { _addmonth = value; }
|
||||
get { return _addmonth; }
|
||||
}
|
||||
public string zjnum
|
||||
{
|
||||
set { _zjnum = value; }
|
||||
get { return _zjnum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count1
|
||||
{
|
||||
set { _count1 = value; }
|
||||
get { return _count1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count2
|
||||
{
|
||||
set { _count2 = value; }
|
||||
get { return _count2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count3
|
||||
{
|
||||
set { _count3 = value; }
|
||||
get { return _count3; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count4
|
||||
{
|
||||
set { _count4 = value; }
|
||||
get { return _count4; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count5
|
||||
{
|
||||
set { _count5 = value; }
|
||||
get { return _count5; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count6
|
||||
{
|
||||
set { _count6 = value; }
|
||||
get { return _count6; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count7
|
||||
{
|
||||
set { _count7 = value; }
|
||||
get { return _count7; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double count8
|
||||
{
|
||||
set { _count8 = value; }
|
||||
get { return _count8; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addweektime1
|
||||
{
|
||||
set { _addweektime1 = value; }
|
||||
get { return _addweektime1; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addweektime2
|
||||
{
|
||||
set { _addweektime2 = value; }
|
||||
get { return _addweektime2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int TType
|
||||
{
|
||||
set { _TType = value; }
|
||||
get { return _TType; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
244
Mtxfw.Model/user_live.cs
Normal file
244
Mtxfw.Model/user_live.cs
Normal file
@@ -0,0 +1,244 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_live
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private string _StreamName;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͬ<EFBFBD><CDAC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7>Ψһ<CEA8><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _StartTime;//<2F><>ʼʱ<CABC><CAB1>
|
||||
private DateTime _EndTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _seef;//ֱ<><D6B1>״̬0δ<30><CEB4>ʼ 1ֱ<31><D6B1><EFBFBD><EFBFBD> 2<><32>ͣ<EFBFBD><CDA3> 3<>ѽ<EFBFBD><D1BD><EFBFBD> 4<>ѹر<D1B9>
|
||||
private int _LinkID;//<2F><><EFBFBD><EFBFBD>ID
|
||||
private int _ttype;//<2F><><EFBFBD><EFBFBD>
|
||||
private string _livepwd;//<2F><><EFBFBD><EFBFBD><EFBFBD>ۿ<EFBFBD><DBBF><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _qx;//Ȩ<><C8A8>0<EFBFBD><30>ȫ1<C8AB><31><EFBFBD><EFBFBD>2˽<32><CBBD>
|
||||
private string _livename;//ֱ<><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _livepic;//ֱ<><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _productids;//<2F><>ƷID<49>б<EFBFBD>
|
||||
private int _qcdz;//ȫ<><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _zgzx;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _lzhd;//<2F>ۼƻ<DBBC><C6BB><EFBFBD>
|
||||
private int _fxcs;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _spdj;//<2F><>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD>
|
||||
private int _csdd;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _fslw;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private Double _xsje;//<2F><><EFBFBD>۽<EFBFBD><DBBD><EFBFBD>
|
||||
private Double _yjbl;//Ӷ<><D3B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private Double _ygyj;//Ԥ<><D4A4>Ӷ<EFBFBD><D3B6>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string StreamName
|
||||
{
|
||||
set { _StreamName = value; }
|
||||
get { return _StreamName; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime StartTime
|
||||
{
|
||||
set { _StartTime = value; }
|
||||
get { return _StartTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime EndTime
|
||||
{
|
||||
set { _EndTime = value; }
|
||||
get { return _EndTime; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int LinkID
|
||||
{
|
||||
set { _LinkID = value; }
|
||||
get { return _LinkID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string livepwd
|
||||
{
|
||||
set { _livepwd = value; }
|
||||
get { return _livepwd; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int qx
|
||||
{
|
||||
set { _qx = value; }
|
||||
get { return _qx; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string productids
|
||||
{
|
||||
set { _productids = value; }
|
||||
get { return _productids; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string livename
|
||||
{
|
||||
set { _livename = value; }
|
||||
get { return _livename; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string livepic
|
||||
{
|
||||
set { _livepic = value; }
|
||||
get { return _livepic; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int qcdz
|
||||
{
|
||||
set { _qcdz = value; }
|
||||
get { return _qcdz; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int zgzx
|
||||
{
|
||||
set { _zgzx = value; }
|
||||
get { return _zgzx; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int lzhd
|
||||
{
|
||||
set { _lzhd = value; }
|
||||
get { return _lzhd; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int fxcs
|
||||
{
|
||||
set { _fxcs = value; }
|
||||
get { return _fxcs; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int spdj
|
||||
{
|
||||
set { _spdj = value; }
|
||||
get { return _spdj; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int csdd
|
||||
{
|
||||
set { _csdd = value; }
|
||||
get { return _csdd; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int fslw
|
||||
{
|
||||
set { _fslw = value; }
|
||||
get { return _fslw; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double xsje
|
||||
{
|
||||
set { _xsje = value; }
|
||||
get { return _xsje; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double yjbl
|
||||
{
|
||||
set { _yjbl = value; }
|
||||
get { return _yjbl; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double ygyj
|
||||
{
|
||||
set { _ygyj = value; }
|
||||
get { return _ygyj; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
115
Mtxfw.Model/user_live_online.cs
Normal file
115
Mtxfw.Model/user_live_online.cs
Normal file
@@ -0,0 +1,115 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_live_online
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _liveid;//ֱ<><D6B1>ID
|
||||
private string _dz;//<2F>ο͵<CEBF><CDB5><EFBFBD>
|
||||
private string _ly;//<2F><>Դ
|
||||
private string _IP;//ip
|
||||
private int _isonline;//<2F><><EFBFBD><EFBFBD>״̬0<CCAC><30><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD>˳<EFBFBD>
|
||||
private int _ttype;//<2F><><EFBFBD><EFBFBD>0<EFBFBD><30>Ա1<D4B1>ο<EFBFBD>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private DateTime _outtime;//<2F>˳<EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int liveid
|
||||
{
|
||||
set { _liveid = value; }
|
||||
get { return _liveid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string dz
|
||||
{
|
||||
set { _dz = value; }
|
||||
get { return _dz; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ly
|
||||
{
|
||||
set { _ly = value; }
|
||||
get { return _ly; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string IP
|
||||
{
|
||||
set { _IP = value; }
|
||||
get { return _IP; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int isonline
|
||||
{
|
||||
set { _isonline = value; }
|
||||
get { return _isonline; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime outtime
|
||||
{
|
||||
set { _outtime = value; }
|
||||
get { return _outtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
67
Mtxfw.Model/user_live_tclog.cs
Normal file
67
Mtxfw.Model/user_live_tclog.cs
Normal file
@@ -0,0 +1,67 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_live_tclog
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _liveid;//ֱ<><D6B1>ID
|
||||
private int _ttype;//<2F><><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD>Ա<EFBFBD>߳<EFBFBD>
|
||||
private DateTime _addtime;//<2F>߳<EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype;
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int liveid
|
||||
{
|
||||
set { _liveid = value; }
|
||||
get { return _liveid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
196
Mtxfw.Model/user_livefile.cs
Normal file
196
Mtxfw.Model/user_livefile.cs
Normal file
@@ -0,0 +1,196 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_livefile
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private int _liveid;//ֱ<><D6B1>ID
|
||||
private string _stream_id;//ֱ<><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _channel_id;//ֱͬ<CDAC><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _file_id;//<2F>㲥 file ID<49><44><EFBFBD>ڵ㲥ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD>Ψһ<CEA8><D2BB>λһ<CEBB><D2BB><EFBFBD>㲥<EFBFBD><E3B2A5>Ƶ<EFBFBD>ļ<EFBFBD>
|
||||
private string _file_format;//flv<6C><76>hls<6C><73>mp4<70><34>aac
|
||||
private Int64 _start_time;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>ʼʱ<CABC><CAB1><EFBFBD><EFBFBD>
|
||||
private Int64 _end_time;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
||||
private Int64 _duration;//¼<><C2BC><EFBFBD>ļ<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
||||
private Int64 _width;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
private Int64 _height;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC>߶<EFBFBD>
|
||||
private UInt64 _file_size;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>λ<EFBFBD>ֽ<EFBFBD>
|
||||
private string _stream_param;//<2F>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD> URL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _video_url;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD> URL
|
||||
private int _seef;//<2F><>ʾ0 <20><><EFBFBD><EFBFBD>1
|
||||
private int _LinkID;//<2F><><EFBFBD><EFBFBD>ID
|
||||
private int _ttype;//<2F><><EFBFBD><EFBFBD>0ֱ<30><D6B1><EFBFBD><EFBFBD>Ƶ 1<><31>̨<EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>Ƶ 2<><32>Ա<EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>Ƶ 3ֱ<33><D6B1><EFBFBD><EFBFBD>ͼ
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int liveid
|
||||
{
|
||||
set { _liveid = value; }
|
||||
get { return _liveid; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string stream_id
|
||||
{
|
||||
set { _stream_id = value; }
|
||||
get { return _stream_id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string channel_id
|
||||
{
|
||||
set { _channel_id = value; }
|
||||
get { return _channel_id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string file_id
|
||||
{
|
||||
set { _file_id = value; }
|
||||
get { return _file_id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string file_format
|
||||
{
|
||||
set { _file_format = value; }
|
||||
get { return _file_format; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 start_time
|
||||
{
|
||||
set { _start_time = value; }
|
||||
get { return _start_time; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 end_time
|
||||
{
|
||||
set { _end_time = value; }
|
||||
get { return _end_time; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 duration
|
||||
{
|
||||
set { _duration = value; }
|
||||
get { return _duration; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 width
|
||||
{
|
||||
set { _width = value; }
|
||||
get { return _width; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 height
|
||||
{
|
||||
set { _height = value; }
|
||||
get { return _height; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public UInt64 file_size
|
||||
{
|
||||
set { _file_size = value; }
|
||||
get { return _file_size; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string stream_param
|
||||
{
|
||||
set { _stream_param = value; }
|
||||
get { return _stream_param; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string video_url
|
||||
{
|
||||
set { _video_url = value; }
|
||||
get { return _video_url; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int LinkID
|
||||
{
|
||||
set { _LinkID = value; }
|
||||
get { return _LinkID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int ttype
|
||||
{
|
||||
set { _ttype = value; }
|
||||
get { return _ttype; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
196
Mtxfw.Model/user_proxy.cs
Normal file
196
Mtxfw.Model/user_proxy.cs
Normal file
@@ -0,0 +1,196 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_bank:ʵ<><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 user_proxy
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private string _AName;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _AgenLevel;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _AgentRecomID;//<2F><><EFBFBD><EFBFBD><EFBFBD>Ƽ<EFBFBD><C6BC>˵<EFBFBD>ID
|
||||
private Double _AgenCost;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _Agenprovince;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʡ<EFBFBD><CAA1>
|
||||
private string _Agencity;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڳ<EFBFBD><DAB3><EFBFBD>
|
||||
private string _Agencounty;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private int _IFFill;//<2F>Ƿ<EFBFBD><C7B7>ֶ<EFBFBD><D6B6><EFBFBD>д<EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>1<EFBFBD><31>
|
||||
private string _Agentrading;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڽֵ<DABD><D6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private string _AAddress;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD>ַ
|
||||
private string _ATel;//<2F><>ϵ<EFBFBD>绰
|
||||
private Decimal _latitude;//γ<><CEB3>
|
||||
private Decimal _longitude;//<2F><><EFBFBD><EFBFBD>
|
||||
private int _seef;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30> 1<><31>
|
||||
private int _IFJS;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƽ<EFBFBD><C6BC><EFBFBD>0<EFBFBD><30> 1<><31>
|
||||
private int _TType;//<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype; //<2F><><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string AName
|
||||
{
|
||||
set { _AName = value; }
|
||||
get { return _AName; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int AgenLevel
|
||||
{
|
||||
set { _AgenLevel = value; }
|
||||
get { return _AgenLevel; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int AgentRecomID
|
||||
{
|
||||
set { _AgentRecomID = value; }
|
||||
get { return _AgentRecomID; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double AgenCost
|
||||
{
|
||||
set { _AgenCost = value; }
|
||||
get { return _AgenCost; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Agenprovince
|
||||
{
|
||||
set { _Agenprovince = value; }
|
||||
get { return _Agenprovince; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Agencity
|
||||
{
|
||||
set { _Agencity = value; }
|
||||
get { return _Agencity; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Agencounty
|
||||
{
|
||||
set { _Agencounty = value; }
|
||||
get { return _Agencounty; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFFill
|
||||
{
|
||||
set { _IFFill = value; }
|
||||
get { return _IFFill; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Agentrading
|
||||
{
|
||||
set { _Agentrading = value; }
|
||||
get { return _Agentrading; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string AAddress
|
||||
{
|
||||
set { _AAddress = value; }
|
||||
get { return _AAddress; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string ATel
|
||||
{
|
||||
set { _ATel = value; }
|
||||
get { return _ATel; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal latitude
|
||||
{
|
||||
set { _latitude = value; }
|
||||
get { return _latitude; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal longitude
|
||||
{
|
||||
set { _longitude = value; }
|
||||
get { return _longitude; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFJS
|
||||
{
|
||||
set { _IFJS = value; }
|
||||
get { return _IFJS; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int TType
|
||||
{
|
||||
set { _TType = value; }
|
||||
get { return _TType; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
74
Mtxfw.Model/user_sign_log.cs
Normal file
74
Mtxfw.Model/user_sign_log.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
using System;
|
||||
using SqlSugar;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// @author xubo
|
||||
/// @date 2026-02-01
|
||||
/// </summary>
|
||||
[SugarTable("user_sign_log")]
|
||||
public class UserSignLog
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 会员编号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "user_id")]
|
||||
public int UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 之前的兑换券
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "before_point")]
|
||||
public decimal BeforePoint { get; set; } = 0.00M;
|
||||
|
||||
/// <summary>
|
||||
/// 本次签到获得的兑换券
|
||||
/// </summary>
|
||||
public decimal Point { get; set; }= 0.00M;
|
||||
|
||||
/// <summary>
|
||||
/// 本次更新后的兑换券
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "after_point")]
|
||||
public decimal AfterPoint { get; set; } = 0.00M;
|
||||
|
||||
/// <summary>
|
||||
/// 连续签到第N天
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "number_day")]
|
||||
public int NumberDay { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 类型,1=用户签到,2=用户自行兑换
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "class_id")]
|
||||
public int ClassId { get; set; } = 1;
|
||||
|
||||
/// <summary>
|
||||
/// 创建日期
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "create_day")]
|
||||
public string CreateDay { get; set; } = DateTime.Today.ToString("yyyy-MM-dd");
|
||||
|
||||
/// <summary>
|
||||
/// CreateTime
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "create_time")]
|
||||
public DateTime CreateTime { get; set; } = DateTime.Now;
|
||||
|
||||
/// <summary>
|
||||
/// Remark
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
125
Mtxfw.Model/user_yj_log.cs
Normal file
125
Mtxfw.Model/user_yj_log.cs
Normal file
@@ -0,0 +1,125 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// user_info:ʵ<><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 user_yj_log
|
||||
{
|
||||
public user_yj_log()
|
||||
{}
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private int _MemberId;//<2F><>ԱID
|
||||
private Int64 _OrderId;//<2F><><EFBFBD><EFBFBD>ID
|
||||
private Double _UpdateMoney;//ҵ<><D2B5>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _seef = 0;//<2F>Ƿ<EFBFBD><C7B7>ѽ<EFBFBD><D1BD><EFBFBD> 0<><30>1<EFBFBD><31><EFBFBD>ս<EFBFBD><D5BD><EFBFBD>2<EFBFBD><32><EFBFBD>½<EFBFBD><C2BD><EFBFBD>
|
||||
private DateTime _seeftime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private string _MemberSTo;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD>·<EFBFBD><C2B7>
|
||||
private string _MemberSTo2;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƽ<EFBFBD>·<EFBFBD><C2B7>
|
||||
private int _FristMember;//<2F>Dz<EFBFBD><C7B2>ǵ<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>Ա
|
||||
private int _IFDel;//<2F>Dz<EFBFBD><C7B2><EFBFBD>ɾ<EFBFBD><C9BE><EFBFBD><EFBFBD>¼
|
||||
private int _utype; // utype 0<><30>ʾ<EFBFBD><CABE>ͨ<EFBFBD><CDA8>Ա<EFBFBD><D4B1>¼<EFBFBD><C2BC>1<EFBFBD><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1>2<EFBFBD><32>ʾ<EFBFBD>յ<EFBFBD><D5B5><EFBFBD>Ϊʵ<CEAA><CAB5><EFBFBD><EFBFBD>3<EFBFBD><33>ʾ<EFBFBD><CABE><EFBFBD>ι<EFBFBD><CEB9><EFBFBD><EFBFBD><EFBFBD>4<EFBFBD><34>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 Id
|
||||
{
|
||||
set{ _id=value;}
|
||||
get{return _id;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int MemberId
|
||||
{
|
||||
set { _MemberId = value; }
|
||||
get { return _MemberId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 OrderId
|
||||
{
|
||||
set { _OrderId = value; }
|
||||
get { return _OrderId; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Double UpdateMoney
|
||||
{
|
||||
set { _UpdateMoney = value; }
|
||||
get { return _UpdateMoney; }
|
||||
}
|
||||
/// <summary>
|
||||
/// addtime
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// seef
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
/// <summary>
|
||||
/// seeftime
|
||||
/// </summary>
|
||||
public DateTime seeftime
|
||||
{
|
||||
set { _seeftime = value; }
|
||||
get { return _seeftime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string MemberSTo
|
||||
{
|
||||
set { _MemberSTo = value; }
|
||||
get { return _MemberSTo; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string MemberSTo2
|
||||
{
|
||||
set { _MemberSTo2 = value; }
|
||||
get { return _MemberSTo2; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int FristMember
|
||||
{
|
||||
set { _FristMember = value; }
|
||||
get { return _FristMember; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int IFDel
|
||||
{
|
||||
set { _IFDel = value; }
|
||||
get { return _IFDel; }
|
||||
}
|
||||
/// <summary>
|
||||
/// utype
|
||||
/// </summary>
|
||||
public int utype
|
||||
{
|
||||
set { _utype = value; }
|
||||
get { return _utype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
60
Mtxfw.Model/user_zzjf.cs
Normal file
60
Mtxfw.Model/user_zzjf.cs
Normal file
@@ -0,0 +1,60 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// city:ʵ<><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 user_zzjf
|
||||
{
|
||||
#region Model
|
||||
private int _id;
|
||||
private Decimal _zznum;//<2F><>ֵ<EFBFBD>ʽ<EFBFBD>
|
||||
private Decimal _zzjg;//<2F><>ֵ<EFBFBD>۸<EFBFBD>
|
||||
private Decimal _zzjf;//<2F><>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal zznum
|
||||
{
|
||||
set { _zznum = value; }
|
||||
get { return _zznum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal zzjg
|
||||
{
|
||||
set { _zzjg = value; }
|
||||
get { return _zzjg; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal zzjf
|
||||
{
|
||||
set { _zzjf = value; }
|
||||
get { return _zzjf; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
123
Mtxfw.Model/user_zzjf_log.cs
Normal file
123
Mtxfw.Model/user_zzjf_log.cs
Normal file
@@ -0,0 +1,123 @@
|
||||
using System;
|
||||
namespace Mtxfw.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// city:ʵ<><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 user_zzjf_log
|
||||
{
|
||||
#region Model
|
||||
private Int64 _id;
|
||||
private Decimal _num;//<2F><>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD>
|
||||
private Decimal _zznum;//<2F><>ֵ<EFBFBD>ʽ<EFBFBD>
|
||||
private Decimal _zzjg;//<2F><>ֵ<EFBFBD>۸<EFBFBD>
|
||||
private Decimal _zzjf;//<2F><>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD>
|
||||
private Decimal _xzjf;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _seef;//0<><30>ʾδ<CABE><CEB4><EFBFBD>ˣ<EFBFBD>1<EFBFBD><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD>ˣ<EFBFBD>-1<><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
private DateTime _seeftime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
||||
private int _IFDelete;//<2F><>ɾ<EFBFBD><C9BE> 0<><30> 1<><31>
|
||||
private DateTime _IFDeleteTime;//<2F><>ɾ<EFBFBD><C9BE>ʱ<EFBFBD><CAB1>
|
||||
private int _gtype;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Int64 id
|
||||
{
|
||||
set { _id = value; }
|
||||
get { return _id; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal num
|
||||
{
|
||||
set { _num = value; }
|
||||
get { return _num; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal zznum
|
||||
{
|
||||
set { _zznum = value; }
|
||||
get { return _zznum; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal zzjg
|
||||
{
|
||||
set { _zzjg = value; }
|
||||
get { return _zzjg; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal zzjf
|
||||
{
|
||||
set { _zzjf = value; }
|
||||
get { return _zzjf; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Decimal xzjf
|
||||
{
|
||||
set { _xzjf = value; }
|
||||
get { return _xzjf; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime addtime
|
||||
{
|
||||
set { _addtime = value; }
|
||||
get { return _addtime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Seef
|
||||
/// </summary>
|
||||
public int seef
|
||||
{
|
||||
set { _seef = value; }
|
||||
get { return _seef; }
|
||||
}
|
||||
/// <summary>
|
||||
/// seeftime
|
||||
/// </summary>
|
||||
public DateTime seeftime
|
||||
{
|
||||
set { _seeftime = value; }
|
||||
get { return _seeftime; }
|
||||
}
|
||||
/// <summary>
|
||||
/// IFDelete
|
||||
/// </summary>
|
||||
public int IFDelete
|
||||
{
|
||||
set { _IFDelete = value; }
|
||||
get { return _IFDelete; }
|
||||
}
|
||||
/// <summary>
|
||||
/// IFDeleteTime
|
||||
/// </summary>
|
||||
public DateTime IFDeleteTime
|
||||
{
|
||||
set { _IFDeleteTime = value; }
|
||||
get { return _IFDeleteTime; }
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int gtype
|
||||
{
|
||||
set { _gtype = value; }
|
||||
get { return _gtype; }
|
||||
}
|
||||
#endregion Model
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user