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.
78 lines
2.3 KiB
C#
78 lines
2.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 = "tMsWlDriver", DisableSyncStructure = true)]
|
|
public partial class TMsWlDriver {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)", IsPrimary = true, IsNullable = false)]
|
|
public string DrvCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string Addr { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? BASESALARY { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CertificateNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,4)")]
|
|
public decimal DriverYears { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4)")]
|
|
public string DrvClass { get; set; } = "0";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string DrvName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string JzNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string Licence { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,4)")]
|
|
public decimal LimitDays { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string LzDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string Mobile { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string NextCheckDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(10,0)")]
|
|
public decimal NoticeDays { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string OffTel { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
|
public string OrgCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string Remark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
|
|
public string TruckType { get; set; } = "0";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string YearCheckDate { get; set; }
|
|
|
|
}
|
|
|
|
}
|