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.

39 lines
1.2 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 = "proc_TMSRPT_MONTH", DisableSyncStructure = true)]
public partial class ProcTMSRPTMONTH {
[JsonProperty, Column(Name = "@ACCDATE", DbType = "varchar(50)", IsNullable = false)]
public string ACCDATE { get; set; }
[JsonProperty, Column(Name = "@BgnDate")]
public DateTime BgnDate { get; set; }
[JsonProperty, Column(Name = "@COMPANYID", DbType = "varchar(50)", IsNullable = false)]
public string COMPANYID { get; set; }
[JsonProperty, Column(Name = "@EndDate")]
public DateTime EndDate { get; set; }
[JsonProperty, Column(Name = "@FUELPRICE", DbType = "numeric(18,4)")]
public decimal FUELPRICE { get; set; }
[JsonProperty, Column(Name = "@LINKGID", DbType = "varchar(50)", IsNullable = false)]
public string LINKGID { get; set; }
[JsonProperty, Column(Name = "@ps_OrgCode", DbType = "varchar(100)", IsNullable = false)]
public string PsOrgCode { get; set; }
}
}