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.
63 lines
1.6 KiB
C#
63 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 = "cw_glDetail_rpt_temp", DisableSyncStructure = true)]
|
|
public partial class CwGlDetailRptTemp {
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
|
public decimal? BLC { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? CR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(2)")]
|
|
public string DC { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? DR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string EXPLAN { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? EXPLAN2 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int ITEMNO { get; set; } = 0;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string ORDNO { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string STARTGID { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(8)")]
|
|
public string VKNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "char(10)")]
|
|
public string VOUDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(16)")]
|
|
public string VOUNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|