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.

33 lines
1.0 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 = "sMsKfJhAccount", DisableSyncStructure = true)]
public partial class SMsKfJhAccount {
[JsonProperty, Column(Name = "@pi_Result", IsIdentity = true)]
public int PiResult { get; set; }
[JsonProperty, Column(Name = "@ps_BillNo", DbType = "varchar(20)", IsNullable = false)]
public string PsBillNo { get; set; }
[JsonProperty, Column(Name = "@ps_Message", DbType = "varchar(2000)", IsIdentity = true, IsNullable = false)]
public string PsMessage { get; set; }
[JsonProperty, Column(Name = "@ps_UserCode", DbType = "varchar(10)", IsNullable = false)]
public string PsUserCode { get; set; }
[JsonProperty, Column(Name = "@ps_UserName", DbType = "varchar(150)", IsNullable = false)]
public string PsUserName { get; set; }
}
}