You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb.Common/DB/MpConfigInfo.cs

29 lines
746 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace DSWeb.Common.DB
{
[Table("sys_MpConfig")]
public class MpConfigInfo
{
public MpConfigInfo()
{
this.AppId = string.Empty;
this.AppSecret = string.Empty;
this.LastUpdate = DateTime.Now;
this.Token = string.Empty;
}
[Key]
public string AppId { get; set; }
public string AppSecret { get; set; }
public DateTime? LastUpdate { get; set; }
public DateTime? ExpireTime { get; set; }
public string Token { get; set; }
}
}