migrate to new git
This commit is contained in:
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; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user