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.

66 lines
1.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 = "ct_bank_checking", DisableSyncStructure = true)]
public partial class CtBankChecking {
/// <summary>
/// 分公司GID
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
/// <summary>
/// 惟一值
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string GID { get; set; }
/// <summary>
/// 日记账/对账单GID
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string LINKGID { get; set; } = "";
/// <summary>
/// 银行日记账/银行对账单
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string LINKTYPE { get; set; } = "";
/// <summary>
/// 最后一次更改时间
/// </summary>
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime MODIFIEDTIME { get; set; }
/// <summary>
/// 最后一次更新操作人GID
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string MODIFIEDUSER { get; set; } = "";
/// <summary>
/// 账套启用GID
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string STARTGID { get; set; } = "";
/// <summary>
/// 对账日期
/// </summary>
[JsonProperty]
public DateTime VOUDATE { get; set; }
}
}