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.

96 lines
2.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 = "VW_cw_vouchers", DisableSyncStructure = true)]
public partial class VWCwVouchers {
[JsonProperty, Column(DbType = "varchar(2)")]
public string ACCMONTH { get; set; }
[JsonProperty, Column(DbType = "varchar(4)")]
public string ACCYEAR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMTCR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMTDR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal? AMTFCYCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal? AMTFCYDR { get; set; }
[JsonProperty]
public int? ATTACHS { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CHECKED { get; set; }
[JsonProperty]
public DateTime? DELETETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string DELETEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ENTERED { get; set; }
[JsonProperty, Column(DbType = "varchar(6)")]
public string ERRMSG { get; set; }
[JsonProperty, Column(DbType = "varchar(8)", IsNullable = false)]
public string FCY { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal? FCYCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal? FCYDR { get; set; }
[JsonProperty]
public bool? ISDELETE { get; set; }
[JsonProperty]
public bool? ISEXPORT { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string MBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string ORDNO { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string PREPARED { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string QTY { get; set; }
[JsonProperty, Column(DbType = "varchar(8)")]
public string VKNO { get; set; }
[JsonProperty, Column(DbType = "varchar(16)", IsNullable = false)]
public string VOUALLNO { get; set; }
[JsonProperty]
public DateTime? VOUDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(16)", IsNullable = false)]
public string VOUNO { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string VOUPROP { get; set; }
}
}