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.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 = "vw_baoxiao", DisableSyncStructure = true)]
public partial class VwBaoxiao {
[JsonProperty, Column(DbType = "varchar(7)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string BXGID { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string BXNO { get; set; }
[JsonProperty]
public byte? BXSTATUS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? Chequeamount { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ChequeNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string COMPANY { get; set; }
[JsonProperty]
public DateTime? CREATEDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CREATEUSER { get; set; }
[JsonProperty]
public DateTime? DELETETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DELETEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DEPTNAME { get; set; }
[JsonProperty]
public byte? ISDELETE { get; set; }
[JsonProperty]
public bool? ISVOU { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal OTHERAMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal RMBAMOUNT { get; set; }
[JsonProperty, Column(DbType = "timestamp")]
public byte[] TIMEMARK { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal USDAMOUNT { get; set; }
[JsonProperty, Column(DbType = "nchar(10)")]
public string VOUCHERNO { get; set; }
}
}