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.
84 lines
2.3 KiB
C#
84 lines
2.3 KiB
C#
3 years ago
|
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 = "VW_CwCfsTemplate_ModelItem", DisableSyncStructure = true)]
|
||
|
public partial class VWCwCfsTemplateModelItem {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(7)")]
|
||
|
public string ACCDATE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string CORPID { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public bool? DETAILED { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
||
|
public string GID { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public bool? ISALTER { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public bool? ISDEFAULT { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string ITEMGID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
||
|
public string ITEMNAME { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string ITEMTYPE { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public int? LINENUM { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string MODELGID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string MODELNAME { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public DateTime? MODIFIEDTIME { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string MODIFIEDUSER { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string PACCGID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
||
|
public decimal? QTYBLC { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "QTYBLC_H", DbType = "numeric(18,2)")]
|
||
|
public decimal? QTYBLCH { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "QTYBLC_S", DbType = "numeric(18,2)")]
|
||
|
public decimal? QTYBLCS { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
||
|
public decimal? QTYLASTBLC { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "QTYLASTBLC_H", DbType = "numeric(18,2)")]
|
||
|
public decimal? QTYLASTBLCH { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "QTYLASTBLC_S", DbType = "numeric(18,2)")]
|
||
|
public decimal? QTYLASTBLCS { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string STARTGID { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|