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#
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 = "tMsWl_ADLFuel", DisableSyncStructure = true)]
|
|
public partial class TMsWlADLFuel {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string DRVCODE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "EXPDATE_BGN")]
|
|
public DateTime? EXPDATEBGN { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "EXPDATE_END")]
|
|
public DateTime? EXPDATEEND { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? FUELPRICE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "FUELPRICE_AGIO", DbType = "numeric(18,2)")]
|
|
public decimal? FUELPRICEAGIO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? REALFUEL { 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(10)")]
|
|
public string TRUCKNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|