25 lines
685 B
C#
25 lines
685 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.CompanyBaseConf
|
|
{
|
|
[Table("application")]
|
|
public class Application
|
|
{
|
|
public int id { get; set; }
|
|
public string application_name { get; set; }
|
|
public string redirect_url { get; set; }
|
|
public string app_id { get; set; }
|
|
public string app_secret { get; set; }
|
|
public int app_type { get; set; }
|
|
public int status { get; set;}
|
|
public int is_deleted { get; set; }
|
|
public DateTime? create_time { get; set; }
|
|
public DateTime? update_time { get; set;}
|
|
|
|
}
|
|
}
|