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.
66 lines
1.6 KiB
C#
66 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 = "TMSRPT_MONTH", DisableSyncStructure = true)]
|
|
public partial class TMSRPTMONTH {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
|
public string ACCDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string AUDITOR { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? AUDITTIME { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? BLSTATUS { get; set; } = 0;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string COMPANYID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? DELETETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DELETEUSER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime EXPDATEBGN { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime EXPDATEEND { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? FUELPRICE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? ISDELETE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string OP { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? OPDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "timestamp")]
|
|
public byte[] TimeMark { get; set; }
|
|
|
|
}
|
|
|
|
}
|