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.4 KiB
C#
48 lines
1.4 KiB
C#
3 years ago
|
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 = "tMsWlTruckFuel", DisableSyncStructure = true)]
|
||
|
public partial class TMsWlTruckFuel {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
||
|
public string Condition1 { get; set; } = ">=";
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
||
|
public string Condition2 { get; set; } = "<";
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
||
|
public decimal? FuelPrice { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,4)")]
|
||
|
public decimal FuelTotal { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
|
||
|
public string LoadType { get; set; } = "1";
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(27,0)")]
|
||
|
public decimal SerialNo { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,4)")]
|
||
|
public decimal Ton1 { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,4)")]
|
||
|
public decimal Ton2 { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
|
||
|
public string TruckNo { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|