115 lines
2.9 KiB
C#
115 lines
2.9 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 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; }
|
|
}
|
|
} |