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.

60 lines
1.6 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_Salary", DisableSyncStructure = true)]
public partial class TMsWlDriverSalary {
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(Name = "AMOUNT_0", DbType = "numeric(18,2)")]
public decimal? AMOUNT0 { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? BASESALARY { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? BONUS { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DRVCODE { get; set; }
[JsonProperty]
public DateTime? EXPDATEBGN { get; set; }
[JsonProperty]
public DateTime? EXPDATEEND { get; set; }
[JsonProperty]
public byte? ISLOCK { get; set; }
[JsonProperty]
public DateTime? PAYDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(300)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? RKF { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? SETTLEMENT { get; set; }
}
}