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.

51 lines
1.4 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 = "OP_LOG", DisableSyncStructure = true)]
public partial class OPLOG {
[JsonProperty, Column(IsPrimary = true, IsIdentity = true)]
public int LogId { get; set; }
[JsonProperty, Column(DbType = "varchar(128)")]
public string BillNO { get; set; }
[JsonProperty, Column(DbType = "varchar(5000)")]
public string JsonValue { get; set; }
[JsonProperty, Column(DbType = "varchar(128)")]
public string MBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string Module { get; set; }
[JsonProperty, Column(DbType = "varchar(40)")]
public string OpCompanyId { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string OpCompanyName { get; set; }
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime OpTime { get; set; }
[JsonProperty, Column(DbType = "varchar(40)")]
public string OpUserId { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string OpUserName { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string Type { get; set; }
}
}