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.
66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "User_Account", DisableSyncStructure = true)]
|
|
public partial class UserAccount {
|
|
|
|
[JsonProperty, Column(Name = "gid", DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string Gid { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DSPORTPassword { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DSPORTUserName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DZKAPassword { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DZKAUserName { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "userid", DbType = "varchar(50)")]
|
|
public string Userid { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string WYPassword { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string WYUserName { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string ZCPassword { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string ZCUserName { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string ZHPassword { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ZHUAPassword { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ZHUAUserName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string ZHUserName { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string ZYPassword { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string ZYUserName { get; set; } = "";
|
|
|
|
}
|
|
|
|
}
|