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.
48 lines
1.3 KiB
C#
48 lines
1.3 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 = "tMsWl_Port", DisableSyncStructure = true)]
|
|
public partial class TMsWlPort {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(7)")]
|
|
public string ACCDATE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "AMOUNT_1", DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNT1 { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "AMOUNT_2", DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNT2 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string BODYTYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DRVCODE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? EXPDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "timestamp")]
|
|
public byte[] TimeMark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string TRUCKNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|