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.

63 lines
1.8 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 = "VW_ADLFuelDate", DisableSyncStructure = true)]
public partial class VWADLFuelDate {
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string DRVCODE { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string DRVNAME { get; set; }
[JsonProperty, Column(Name = "EXPDATE_BGN", DbType = "varchar(12)")]
public string EXPDATEBGN { get; set; }
[JsonProperty, Column(Name = "EXPDATE_END", DbType = "varchar(12)")]
public string 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(19,4)")]
public decimal FUELRATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal OVERLOADMIL { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? RATEDFUEL { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? REALFUEL { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string REMARK { get; set; }
[JsonProperty]
public long? TimeMark { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string TRUCKNO { get; set; }
}
}