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 description for activity
///
public class activity
{
public activity()
{
//
// TODO: Add constructor logic here
//
}
public Nullable 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 kind { get; set; }
public string kindTxt { get; set; }
public string subject { get; set; }
public Nullable 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 price { get; set; }
public string demo { get; set; }
public string customize_data { get; set; }
public Nullable 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 f_num { get; set; }
public Nullable activity_num { get; set; }
public string activityTxt { get; set; }
public Nullable reg_time { get; set; }
public Nullable status { get; set; }
public Nullable check_time { get; set; }
public Nullable reg_time1 { get; set; }
public Nullable 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; }
}
}