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.
93 lines
2.1 KiB
C#
93 lines
2.1 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 = "ct_bank_reconciliation", DisableSyncStructure = true)]
|
|
public partial class CtBankReconciliation {
|
|
|
|
/// <summary>
|
|
/// 日记账金额
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "decimal(18,2)")]
|
|
public decimal? AMOUNT1 { get; set; } = 0M;
|
|
|
|
/// <summary>
|
|
/// 对账単金额
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "decimal(18,2)")]
|
|
public decimal? AMOUNT2 { get; set; } = 0M;
|
|
|
|
/// <summary>
|
|
/// 分公司代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日记账项目
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ITEM1 { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 对账单项目
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ITEM2 { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 行号1
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public int? LINENUM1 { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 行号2
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public int? LINENUM2 { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 更改操作时间
|
|
/// </summary>
|
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
|
public DateTime? MODIFIEDTIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更改操作人gid
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string MODIFIEDUSER { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 凭证行号1
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public int? ROWNUM1 { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 凭证行号2
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public int? ROWNUM2 { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 账套启用GID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string STARTGID { get; set; } = "";
|
|
|
|
}
|
|
|
|
}
|