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.4 KiB
C#
84 lines
2.4 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_jiekuan", DisableSyncStructure = true)]
|
|
public partial class VwJiekuan {
|
|
|
|
[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)")]
|
|
public string CHEQUENO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string COMPANYID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? DELETETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DELETEUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string DEPTID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime ENTERDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string ENTEROPERATOR { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? EXREPAYDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? ISDELETE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? JKSTATUS { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? JKTYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal OTHERAMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "OTHERAMOUNT_settlement", DbType = "numeric(38,2)")]
|
|
public decimal OTHERAMOUNTSettlement { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "remark", DbType = "varchar(150)")]
|
|
public string Remark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal RMBAMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "RMBAMOUNT_settlement", DbType = "numeric(38,2)")]
|
|
public decimal RMBAMOUNTSettlement { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "timestamp")]
|
|
public byte[] TimeMark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal USDAMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "USDAMOUNT_settlement", DbType = "numeric(38,2)")]
|
|
public decimal USDAMOUNTSettlement { get; set; }
|
|
|
|
}
|
|
|
|
}
|