using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
///
/// 办公系统厂商账户表
///
[SugarTable("OA_FirmAccount")]
[Tenant("ECTESTOADB")]
public class OA_FirmAccount
{
///
/// 备 注:账户编号
/// 默认值:
///
[SugarColumn(ColumnName="Keyid" ,IsPrimaryKey = true,IsIdentity = true) ]
public int Keyid { get; set; }
///
/// 备 注:厂商编号
/// 默认值:
///
[SugarColumn(ColumnName="FirmId" ) ]
public Guid FirmId { get; set; }
///
/// 备 注:账名
/// 默认值:
///
[SugarColumn(ColumnName="AccountName" ) ]
public string AccountName { get; set; } = null!;
///
/// 备 注:账户类型
/// 默认值:
///
[SugarColumn(ColumnName="AccountType" ) ]
public string AccountType { get; set; } = null!;
///
/// 备 注:户名
/// 默认值:
///
[SugarColumn(ColumnName="UserName" ) ]
public string UserName { get; set; } = null!;
///
/// 备 注:责任人
/// 默认值:
///
[SugarColumn(ColumnName="ResponsiblePerson" ) ]
public string? ResponsiblePerson { get; set; }
///
/// 备 注:状态
/// 默认值:
///
[SugarColumn(ColumnName="Status" ) ]
public bool Status { get; set; }
///
/// 备 注:余额
/// 默认值:
///
[SugarColumn(ColumnName="Balance" ) ]
public decimal Balance { get; set; }
///
/// 备 注:总收入
/// 默认值:
///
[SugarColumn(ColumnName="AllIncome" ) ]
public decimal AllIncome { get; set; }
///
/// 备 注:总支出
/// 默认值:
///
[SugarColumn(ColumnName="AllExpenses" ) ]
public decimal AllExpenses { get; set; }
///
/// 备 注:创建时间
/// 默认值:
///
[SugarColumn(ColumnName="CreateTime" ) ]
public DateTime CreateTime { get; set; }
///
/// 备 注:最后修改时间
/// 默认值:
///
[SugarColumn(ColumnName="LastUpdateTime" ) ]
public DateTime LastUpdateTime { get; set; }
///
/// 备 注:操作人
/// 默认值:
///
[SugarColumn(ColumnName="Operator" ) ]
public string Operator { get; set; } = null!;
///
/// 备 注:备注
/// 默认值:
///
[SugarColumn(ColumnName="Remark" ) ]
public string? Remark { get; set; }
}
}