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.
99 lines
2.7 KiB
C#
99 lines
2.7 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_OA_Baoxiao_Pay", DisableSyncStructure = true)]
|
|
public partial class VWOABaoxiaoPay {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(7)")]
|
|
public string ACCDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "AMOUNT_P", DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNTP { 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, Column(DbType = "varchar(50)")]
|
|
public string FINANCIALCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? ISDELETE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISVOU { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? OPERATEDATE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "OPERATORSIDE_gl", DbType = "varchar(16)")]
|
|
public string OPERATORSIDEGl { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(150)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "REMARK_P", DbType = "varchar(1024)")]
|
|
public string REMARKP { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string SETTLEMENTTYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string TICKETNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "timestamp")]
|
|
public byte[] TIMEMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "nchar(10)")]
|
|
public string VOUCHERNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|