54 lines
1.3 KiB
C#
54 lines
1.3 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 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; }
|
|
|
|
}
|
|
|
|
} |