migrate to new git
This commit is contained in:
65
web/App_Code/Model/ViewModel/accounting.cs
Normal file
65
web/App_Code/Model/ViewModel/accounting.cs
Normal file
@@ -0,0 +1,65 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for accounting
|
||||
/// </summary>
|
||||
public class accounting
|
||||
{
|
||||
public accounting()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public Nullable<int> category { get; set; }
|
||||
public Nullable<int> kind { get; set; }
|
||||
public Nullable<int> kind2 { get; set; }
|
||||
|
||||
public Nullable<System.DateTime> uptime1 { get; set; }
|
||||
public Nullable<System.DateTime> uptime2 { get; set; }
|
||||
public string activity_num_txt { get; set; }
|
||||
public string mem_num_txt { get; set; }
|
||||
public string debtor { get; set; }
|
||||
}
|
||||
public class accounting_kind
|
||||
{
|
||||
public accounting_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class accounting_kind2
|
||||
{
|
||||
public accounting_kind2()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
public string record_payment { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
30
web/App_Code/Model/ViewModel/actItem_kind.cs
Normal file
30
web/App_Code/Model/ViewModel/actItem_kind.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for actItem_kind
|
||||
/// </summary>
|
||||
public class actItem_kind
|
||||
{
|
||||
public actItem_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
public string kind { get; set; }
|
||||
public string status { get; set; }
|
||||
}
|
||||
}
|
||||
115
web/App_Code/Model/ViewModel/activity.cs
Normal file
115
web/App_Code/Model/ViewModel/activity.cs
Normal file
@@ -0,0 +1,115 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for activity
|
||||
/// </summary>
|
||||
public class activity
|
||||
{
|
||||
public activity()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
|
||||
public Nullable<int> kind { get; set; }
|
||||
public string kindTxt { get; set; }
|
||||
public string subject { get; set; }
|
||||
public int? num { get; set; }
|
||||
public string is_reconcile { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class actItem
|
||||
{
|
||||
public actItem()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public int num { get; set; }
|
||||
public Nullable<int> kind { get; set; }
|
||||
public string kindTxt { get; set; }
|
||||
public string subject { get; set; }
|
||||
public Nullable<int> category { get; set; }
|
||||
public string categorys { get; set; }
|
||||
public string extend { get; set; }
|
||||
public string status { get; set; }
|
||||
public string fileTxt { get; set; }
|
||||
public Nullable<float> price { get; set; }
|
||||
public string demo { get; set; }
|
||||
public string customize_data { get; set; }
|
||||
public Nullable<System.DateTime> reg_time { get; set; }
|
||||
public string partno { get; set; }
|
||||
public string print_init { get; set; }
|
||||
|
||||
// 顯示用的組合欄位
|
||||
public string subject_with_price { get; set; }
|
||||
public string full_description { get; set; }
|
||||
}
|
||||
public class activity_kind
|
||||
{
|
||||
public activity_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public int? num { get; set; }
|
||||
public string kind { get; set; }
|
||||
}
|
||||
|
||||
public class activity_check
|
||||
{
|
||||
public activity_check()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
public Nullable<int> f_num { get; set; }
|
||||
public Nullable<int> activity_num { get; set; }
|
||||
public string activityTxt { get; set; }
|
||||
public Nullable<System.DateTime> reg_time { get; set; }
|
||||
public Nullable<int> status { get; set; }
|
||||
public Nullable<System.DateTime> check_time { get; set; }
|
||||
public Nullable<System.DateTime> reg_time1 { get; set; }
|
||||
public Nullable<System.DateTime> reg_time2 { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class activity_category_kind
|
||||
{
|
||||
public activity_category_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public int? num { get; set; }
|
||||
public string kind { get; set; }
|
||||
}
|
||||
}
|
||||
34
web/App_Code/Model/ViewModel/admin.cs
Normal file
34
web/App_Code/Model/ViewModel/admin.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for admin
|
||||
/// </summary>
|
||||
public class admin
|
||||
{
|
||||
public admin()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
public int? num { get; set; }
|
||||
public string u_id { get; set; }
|
||||
public string u_name { get; set; }
|
||||
public string power { get; set; }
|
||||
public bool online { get; set; }
|
||||
public bool? removeExist { get; set; }
|
||||
}
|
||||
}
|
||||
111
web/App_Code/Model/ViewModel/bed.cs
Normal file
111
web/App_Code/Model/ViewModel/bed.cs
Normal file
@@ -0,0 +1,111 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using System.Web.UI;
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.IO;
|
||||
using System.IO.Compression;
|
||||
using System.Net.Mail;
|
||||
using System.Configuration;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Imaging;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Data.OleDb;
|
||||
using Microsoft.VisualBasic;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Web.Security;
|
||||
using System.Security.Cryptography;
|
||||
using System.Web.UI;
|
||||
using System.Collections;
|
||||
using System.Collections.Specialized;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.Design;
|
||||
using System.ComponentModel.Design.Serialization;
|
||||
using System.IO;
|
||||
using System.Security.Principal;
|
||||
using System.Web.Caching;
|
||||
using System.Web.ModelBinding;
|
||||
using System.Web.Routing;
|
||||
using System.Web.SessionState;
|
||||
using System.Web.UI.Adapters;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Collections;
|
||||
using System.Data;
|
||||
using System.Data.OleDb;
|
||||
using System.Configuration;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Net;
|
||||
using System.Reflection;
|
||||
using System.ComponentModel;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for pro_order
|
||||
/// </summary>
|
||||
public class bed_order
|
||||
{
|
||||
public bed_order()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string bed_order_no { get; set; }
|
||||
public string order_no { get; set; }
|
||||
public Nullable<int> o_detail_id { get; set; }
|
||||
public string keyin1 { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class bed_order_detail
|
||||
{
|
||||
public bed_order_detail()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string bed_order_no { get; set; }
|
||||
public Nullable<System.DateTime> checkIn_date { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
48
web/App_Code/Model/ViewModel/bed_kind.cs
Normal file
48
web/App_Code/Model/ViewModel/bed_kind.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for bed_kind
|
||||
/// </summary>
|
||||
public class bed_kind
|
||||
{
|
||||
public bed_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
public string kind { get; set; }
|
||||
public string sex { get; set; }
|
||||
public int? num { get; set; }
|
||||
public int? root { get; set; }
|
||||
}
|
||||
|
||||
public class bed_kind_detail
|
||||
{
|
||||
public bed_kind_detail()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
public Nullable<int> bed_kind_id { get; set; }
|
||||
public string bed_name { get; set; }
|
||||
public Nullable<int> bed_type { get; set; }
|
||||
public string bed_type_txt { get; set; }
|
||||
public DateTime? inTime { get; set; }
|
||||
public int? num { get; set; }
|
||||
}
|
||||
}
|
||||
26
web/App_Code/Model/ViewModel/country.cs
Normal file
26
web/App_Code/Model/ViewModel/country.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for country
|
||||
/// </summary>
|
||||
public class country
|
||||
{
|
||||
public country()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string ID { get; set; }
|
||||
public string keyword { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
34
web/App_Code/Model/ViewModel/files.cs
Normal file
34
web/App_Code/Model/ViewModel/files.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for files
|
||||
/// </summary>
|
||||
public class files
|
||||
{
|
||||
public files()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public Nullable<System.DateTime> reg_time1 { get; set; }
|
||||
public Nullable<System.DateTime> reg_time2 { get; set; }
|
||||
public string subject { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
61
web/App_Code/Model/ViewModel/follower.cs
Normal file
61
web/App_Code/Model/ViewModel/follower.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for follower
|
||||
/// </summary>
|
||||
public class follower
|
||||
{
|
||||
public follower()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
public int? num { get; set; }
|
||||
public int? f_num { get; set; }
|
||||
public int? leader { get; set; }
|
||||
public int? appellation_id { get; set; }
|
||||
public string f_number { get; set; }
|
||||
public string u_name { get; set; }
|
||||
public string sex { get; set; }
|
||||
public string phone { get; set; }
|
||||
public string id_code { get; set; }
|
||||
public string address { get; set; }
|
||||
public bool? ept_self { get; set; }
|
||||
public Nullable<int> identity_type { get; set; }
|
||||
public Nullable<System.DateTime> birthday { get; set; }
|
||||
public Nullable<System.DateTime> birthday2 { get; set; }
|
||||
|
||||
public string country { get; set; }
|
||||
public string country2 { get; set; }
|
||||
}
|
||||
public class followers_tablet
|
||||
{
|
||||
public followers_tablet()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
public int? num { get; set; }
|
||||
public int? f_num { get; set; }
|
||||
public string type { get; set; }
|
||||
public string title { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
54
web/App_Code/Model/ViewModel/member.cs
Normal file
54
web/App_Code/Model/ViewModel/member.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for member
|
||||
/// </summary>
|
||||
public class member
|
||||
{
|
||||
public member()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public Nullable<int> group_kind { get; set; }
|
||||
public Nullable<int> title_kind { get; set; }
|
||||
public string u_name { get; set; }
|
||||
public string sex { get; set; }
|
||||
public string m_number { get; set; }
|
||||
public Nullable<System.TimeSpan> starttime { get; set; }
|
||||
public Nullable<System.TimeSpan> offtime { get; set; }
|
||||
}
|
||||
|
||||
public class member_check
|
||||
{
|
||||
public member_check()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public Nullable<int> group_kind { get; set; }
|
||||
public string u_name { get; set; }
|
||||
public int? check_date_year { get; set; }
|
||||
public int? check_date_month { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
43
web/App_Code/Model/ViewModel/member_title.cs
Normal file
43
web/App_Code/Model/ViewModel/member_title.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for member_title & member_group
|
||||
/// </summary>
|
||||
public class member_title
|
||||
{
|
||||
public member_title()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
public bool inTime { get; set; }
|
||||
}
|
||||
|
||||
public class member_group
|
||||
{
|
||||
public member_group()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
}
|
||||
}
|
||||
54
web/App_Code/Model/ViewModel/news.cs
Normal file
54
web/App_Code/Model/ViewModel/news.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for news
|
||||
/// </summary>
|
||||
public class news
|
||||
{
|
||||
public news()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string subject { get; set; }
|
||||
public Nullable<int> kind { get; set; }
|
||||
public string status { get; set; }
|
||||
public Nullable<System.DateTime> selltime1 { get; set; }
|
||||
public Nullable<System.DateTime> selltime2 { get; set; }
|
||||
public Nullable<System.DateTime> uptime1 { get; set; }
|
||||
public Nullable<System.DateTime> uptime2 { get; set; }
|
||||
public Nullable<int> activity_num { get; set; }
|
||||
public string activity_numTxt { get; set; }
|
||||
}
|
||||
public class news_kind
|
||||
{
|
||||
public news_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
public bool inTime { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
88
web/App_Code/Model/ViewModel/order.cs
Normal file
88
web/App_Code/Model/ViewModel/order.cs
Normal file
@@ -0,0 +1,88 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
//using System.Data.OleDb;
|
||||
//using System.Data.SqlClient;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for pro_order
|
||||
/// </summary>
|
||||
public class pro_order
|
||||
{
|
||||
public pro_order()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string order_no { get; set; }
|
||||
public Nullable<System.DateTime> up_time1 { get; set; }
|
||||
public Nullable<System.DateTime> up_time2 { get; set; }
|
||||
public string keyin1 { get; set; }
|
||||
public Nullable<int> f_num { get; set; }
|
||||
public string u_name { get; set; }
|
||||
public Nullable<int> activity_num { get; set; }
|
||||
public string subject { get; set; }
|
||||
|
||||
public string address { get; set; }
|
||||
public string actItemTxt { get; set; }
|
||||
public string introducerTxt { get; set; }
|
||||
public string country { get; set; }
|
||||
public string country2 { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class pro_order_detail
|
||||
{
|
||||
public pro_order_detail()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public int num { get; set; }
|
||||
public string order_no { get; set; }
|
||||
public Nullable<int> actItem_num { get; set; }
|
||||
public Nullable<int> actItem_kind_num { get; set; }
|
||||
public Nullable<int> f_num { get; set; }
|
||||
public string f_num_txt { get; set; }
|
||||
public Nullable<int> from_id { get; set; }
|
||||
public string address { get; set; }
|
||||
public string from_id_tablet { get; set; }
|
||||
public Nullable<System.DateTime> due_date { get; set; }
|
||||
public Nullable<int> bed_type { get; set; }
|
||||
public Nullable<float> price { get; set; }
|
||||
public Nullable<int> qty { get; set; }
|
||||
public Nullable<System.DateTime> start_date { get; set; }
|
||||
public Nullable<System.DateTime> extend_date { get; set; }
|
||||
public Nullable<float> pay { get; set; }
|
||||
public Nullable<System.DateTime> pay_date { get; set; }
|
||||
public Nullable<int> keyin1 { get; set; }
|
||||
public string demo { get; set; }
|
||||
public string customize_data { get; set; }
|
||||
public string printed_files { get; set; }
|
||||
public Nullable<int> parent_num { get; set; }
|
||||
public string print_id { get; set; }
|
||||
public Nullable<System.DateTime> UpdateTime { get; set; }
|
||||
|
||||
// 顯示用的組合欄位
|
||||
public string actitem_name { get; set; }
|
||||
public string follower_name { get; set; }
|
||||
public string full_description { get; set; }
|
||||
public string order_info { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
48
web/App_Code/Model/ViewModel/project.cs
Normal file
48
web/App_Code/Model/ViewModel/project.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for project
|
||||
/// </summary>
|
||||
public class project
|
||||
{
|
||||
public project()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public int? num { get; set; }
|
||||
public string subject { get; set; }
|
||||
public Nullable<int> kind { get; set; }
|
||||
public Nullable<int> actItem_num { get; set; }
|
||||
|
||||
|
||||
}
|
||||
public class project_kind
|
||||
{
|
||||
public project_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
65
web/App_Code/Model/ViewModel/stock.cs
Normal file
65
web/App_Code/Model/ViewModel/stock.cs
Normal file
@@ -0,0 +1,65 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for stock
|
||||
/// </summary>
|
||||
public class stock
|
||||
{
|
||||
public stock()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public Nullable<int> category { get; set; }
|
||||
public Nullable<int> kind { get; set; }
|
||||
public Nullable<int> reason { get; set; }
|
||||
public Nullable<int> activity_num { get; set; }
|
||||
public Nullable<int> actItem_num { get; set; }
|
||||
|
||||
public Nullable<System.DateTime> uptime1 { get; set; }
|
||||
public Nullable<System.DateTime> uptime2 { get; set; }
|
||||
public string activity_num_txt { get; set; }
|
||||
public string mem_num_txt { get; set; }
|
||||
public string debtor { get; set; }
|
||||
}
|
||||
public class stock_kind
|
||||
{
|
||||
public stock_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
|
||||
}
|
||||
public class stock_reason
|
||||
{
|
||||
public stock_reason()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
public Nullable<int> category { get; set; }
|
||||
}
|
||||
}
|
||||
47
web/App_Code/Model/ViewModel/supplier.cs
Normal file
47
web/App_Code/Model/ViewModel/supplier.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for supplier
|
||||
/// </summary>
|
||||
public class supplier
|
||||
{
|
||||
public supplier()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public Nullable<int> kind { get; set; }
|
||||
|
||||
public string u_name { get; set; }
|
||||
public string s_number { get; set; }
|
||||
public string kindTxt { get; set; }
|
||||
}
|
||||
public class supplier_kind
|
||||
{
|
||||
public supplier_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
public string kind { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
91
web/App_Code/Model/ViewModel/transfer_register.cs
Normal file
91
web/App_Code/Model/ViewModel/transfer_register.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for transfer_register
|
||||
/// </summary>
|
||||
public class transfer_register
|
||||
{
|
||||
public transfer_register()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
|
||||
public int id { get; set; }
|
||||
public Nullable<int> activity_num { get; set; }
|
||||
public string name { get; set; }
|
||||
public string phone { get; set; }
|
||||
public string pay_type { get; set; }
|
||||
public string account_last5 { get; set; }
|
||||
public Nullable<decimal> amount { get; set; }
|
||||
public string pay_mode { get; set; }
|
||||
public string note { get; set; }
|
||||
public string proof_img { get; set; }
|
||||
public string status { get; set; }
|
||||
public Nullable<System.DateTime> create_time { get; set; }
|
||||
public Nullable<int> f_num_match { get; set; }
|
||||
public Nullable<int> f_num { get; set; }
|
||||
public Nullable<int> acc_num { get; set; }
|
||||
public Nullable<System.DateTime> check_date { get; set; }
|
||||
public Nullable<decimal> check_amount { get; set; }
|
||||
public string check_memo { get; set; }
|
||||
public string check_status { get; set; }
|
||||
public Nullable<int> acc_kind { get; set; }
|
||||
public Nullable<int> member_num { get; set; }
|
||||
public Nullable<System.DateTime> verify_time { get; set; }
|
||||
public string verify_note { get; set; }
|
||||
public string draft { get; set; }
|
||||
public Nullable<decimal> remain_amount { get; set; }
|
||||
|
||||
// 新增的餘額相關欄位
|
||||
public Nullable<int> balance_act_item { get; set; }
|
||||
public Nullable<int> balance_pro_order_detail { get; set; }
|
||||
|
||||
// 顯示用的文字欄位
|
||||
public string activity_name { get; set; }
|
||||
public string follower_name { get; set; }
|
||||
public string actitem_name { get; set; }
|
||||
public string order_detail_info { get; set; }
|
||||
public string acc_kind_name { get; set; }
|
||||
public string status_text { get; set; }
|
||||
public string check_status_text { get; set; }
|
||||
}
|
||||
|
||||
public class transfer_balance_reconcile
|
||||
{
|
||||
public transfer_balance_reconcile()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string phone { get; set; }
|
||||
public Nullable<decimal> amount { get; set; }
|
||||
public Nullable<decimal> remain_amount { get; set; }
|
||||
public string activity_name { get; set; }
|
||||
public Nullable<System.DateTime> create_time { get; set; }
|
||||
public string check_status { get; set; }
|
||||
public string check_status_text { get; set; }
|
||||
|
||||
// 餘額核銷相關
|
||||
public Nullable<int> balance_act_item { get; set; }
|
||||
public string balance_actitem_name { get; set; }
|
||||
public Nullable<int> balance_pro_order_detail { get; set; }
|
||||
public string balance_order_info { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user