Journeys_WantHome/Models/DbTableClass.cs

340 lines
8.3 KiB
C#

using System;
using System.Collections.Generic;
using Dapper.Contrib.Extensions;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
public class DbTableClass
{
[Table("quotation")]
public class quotation
{
[JsonIgnore]
[Key]
public int quotation_sn { get; set; }
public string quotation_serial { get; set; }
public string quotation_name { get; set; }
public int quotation_year { get; set; }
public string dept_uid { get; set; }
public int quotation_budget { get; set; }
public string company_uid { get; set; }
public string company_serial { get; set; }
public string quotation_ps { get; set; }
public string quotation_paperfile { get; set; }
public int quotation_version { get; set; }
public string quotation_del { get; set; }
public string quotation_invalid { get; set; }
public string quotation_create_user_uid { get; set; }
public DateTime quotation_createdate { get; set; }
public DateTime quotation_modifydate { get; set; }
}
[Table("project")]
public class project
{
[JsonIgnore]
[Key]
public int project_sn { get; set; }
public string project_uid { get; set; } = "";
public string project_isPrm { get; set; } = "N";
public string project_prmSerial { get; set; } = "";
public string project_name { get; set; } = "";
public int project_year { get; set; } = 1900;
public int project_month { get; set; } = 1;
public string project_isExec { get; set; } = "N";
public string project_reason { get; set; } = "";
public DateTime project_createdate { get; set; } = DateTime.Now;
public DateTime project_modifydate { get; set; }= DateTime.Now;
public string project_create_id { get; set; } = "";
public string project_modify_id { get; set; } = "";
}
[Table("kol")]
public class kol
{
[JsonIgnore]
[Key]
public int kol_sn { get; set; }
public string kol_uid { get; set; } = "";
public string kol_name { get; set; } = "";
public string kol_photo { get; set; } = "";
public string kol_descript { get; set; } = "";
public double kol_men_ratio { get; set; } = 0;
public double kol_women_ratio { get; set; } = 0;
public double kol_13_17 { get; set; } = 0;
public double kol_18_24 { get; set; } = 0;
public double kol_25_34 { get; set; } = 0;
public double kol_35_44 { get; set; } = 0;
public double kol_45_54 { get; set; } = 0;
public double kol_55_64 { get; set; } = 0;
public double kol_65 { get; set; } = 0;
public string kol_contact1 { get; set; } = "";
public string kol_contact2 { get; set; } = "";
public DateTime kol_createdate { get; set; } = DateTime.Now;
public DateTime kol_modifydate { get; set; } = DateTime.Now;
public string kol_create_userId { get; set; } = "";
public string kol_modify_userId { get; set; } = "";
}
[Table("kolCooperateType")]
public class kolCooperateType
{
[JsonIgnore]
[Key]
public int kolCooperateType_sn { get; set; }
public string kolCooperateType_uid { get; set; } = "";
public string kol_uid { get; set; } = "";
public string project_uid { get; set; } = "";
public string option_uid { get; set; } = "";
public string optionItem_uid { get; set; } = "";
}
[Table("kolFansType")]
public class kolFansType
{
[JsonIgnore]
[Key]
public int kolFansType_sn { get; set; }
public string kolFansType_uid { get; set; } = "";
public string kol_uid { get; set; } = "";
public string option_uid { get; set; } = "";
public string optionItem_uid { get; set; } = "";
}
[Table("kolMakeup")]
public class kolMakeup
{
[JsonIgnore]
[Key]
public int kolMakeup_sn { get; set; }
public string kolMakeup_uid { get; set; } = "";
public string kol_uid { get; set; } = "";
public string option_uid { get; set; } = "";
public string optionItem_uid { get; set; } = "";
}
[Table("kolMedia")]
public class kolMedia
{
[JsonIgnore]
[Key]
public int kolMedia_sn { get; set; }
public string kolMedia_uid { get; set; } = "";
public string kol_uid { get; set; } = "";
public string option_uid { get; set; } = "";
public string optionItem_uid { get; set; } = "";
public string kolMedia_url { get; set; } = "";
public string kolMedia_displayName { get; set; } = "";
public string kolMedia_accountName { get; set; } = "";
public int kolMedia_fansNum { get; set; } = 0;
}
[Table("kolStyle")]
public class kolStyle
{
[JsonIgnore]
[Key]
public int kolStyle_sn { get; set; }
public string kolStyle_uid { get; set; } = "";
public string kol_uid { get; set; } = "";
public string option_uid { get; set; } = "";
public string optionItem_uid { get; set; } = "";
}
[Table("optionItem")]
public class optionItem
{
[JsonIgnore]
[Key]
public int optionItem_sn { get; set; }
public string option_uid { get; set; } = "";
public string optionItem_uid { get; set; } = "";
public string optionItem_name { get; set; } = "";
public string optionItem_ishide { get; set; } = "N";
public int optionItem_order { get; set; } = 999;
public DateTime optionItem_createdate { get; set; } = DateTime.Now;
public DateTime optionItem_modifydate { get; set; } = DateTime.Now;
public string optionItem_userId { get; set; } = "";
}
[Table("option")]
public class option
{
[JsonIgnore]
[Key]
public int option_sn { get; set; }
public string option_uid { get; set; } = "";
public string option_name { get; set; } = "";
public string option_ishide { get; set; } = "N";
public DateTime option_createdate { get; set; } = DateTime.Now;
public DateTime option_modifydate { get; set; } = DateTime.Now;
}
[Table("token")]
public class token
{
[JsonIgnore]
[Key]
public int token_sn { get; set; }
public string token_key { get; set; } = "";
public string user_uid { get; set; } = "";
public string user_id { get; set; } = "";
public string token_isremember { get; set; } = "N";
public DateTime token_createdate { get; set; } = DateTime.Now;
public DateTime token_expireddate { get; set; } = DateTime.Now.AddMinutes(20);
}
[Table("users")]
public class user
{
[JsonIgnore]
[Key]
public int user_sn { get; set; }
public string user_uid { get; set; } = "";
public string user_id { get; set; } = "";
public string user_name { get; set; } = "";
public string user_email { get; set; } = "";
public string user_onjob { get; set; } = "N";
public string user_type { get; set; } = "N";
public string user_pwd { get; set; } = "";
public string user_perm { get; set; } = "user";
public string user_pic { get; set; } = "";
public string user_ishidden { get; set; } = "N";
public DateTime user_createdate { get; set; } = DateTime.Now;
public string user_lastlogintime { get; set; } = "";
}
[Table("new_userdata")]
public class new_userdata
{
[JsonIgnore]
[Key]
public int usersn { get; set; }
public string userid { get; set; } = "";
public string userpw { get; set; } = "";
public string username { get; set; } = "";
public int maincategoryid { get; set; } = 1;
public int subcategoryid { get; set; } = 1;
public int grade { get; set; } = 0;
public string mail { get; set; } = "";
public string mailto { get; set; } = "";
public int onjob { get; set; } = 0;
public int permission { get; set; } = 0;
}
}