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.

75 lines
1.9 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 = "OA_Baoxiao", DisableSyncStructure = true)]
public partial class OABaoxiao {
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string BXGID { get; set; }
[JsonProperty, Column(DbType = "varchar(7)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(50)")]
public string BSNO { 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; } = 0M;
[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; } = false;
[JsonProperty, Column(DbType = "varchar(150)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "timestamp")]
public byte[] TIMEMARK { get; set; }
[JsonProperty, Column(DbType = "nchar(10)")]
public string VOUCHERNO { get; set; }
}
}