88 lines
2.8 KiB
C#
88 lines
2.8 KiB
C#
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; }
|
|
|
|
}
|
|
} |