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.
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
3 years ago
|
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 = "msk_subscribe_user_account", DisableSyncStructure = true)]
|
||
|
public partial class MskSubscribeUserAccount {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
||
|
public string UserId { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(64)", IsNullable = false)]
|
||
|
public string MskSpotAccount { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(64)")]
|
||
|
public string MskSpotAccountBook { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(64)", IsNullable = false)]
|
||
|
public string MskSpotCustNO { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(64)")]
|
||
|
public string MskSpotCustNOBook { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(64)", IsNullable = false)]
|
||
|
public string MskSpotPassword { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(64)")]
|
||
|
public string MskSpotPasswordBook { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|