TemplatePro/BZPT.Domains/Entity/Pro/SpecialAccount.cs

165 lines
3.8 KiB
C#
Raw Normal View History

2025-03-02 23:30:03 +08:00
/***********************************************************
**:BZPT.Entity
**: SpecialAccount
** : CodeSmith生成
** : 1.0
**
************************************************************/
namespace BZPT.Domains.Entity.Pro
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/// <summary>
///SpecialAccount专户信息
/// </summary>
[Serializable]
[Table(name:"Pro_SpecialAccount")]
public partial class SpecialAccount : EntityBase<string>, IPro, ILogicDelete
{
/// <summary>
/// 建设单位名称
/// </summary>
[Display(Name = "建设单位名称")]
[StringLength(1200)]
public string CC01 { get; set; }
/// <summary>
/// 工资专户开户时间
/// </summary>
[Display(Name = "工资专户开户时间")]
public DateTime? ZC01 { get; set; }
/// <summary>
/// 标段ID
/// </summary>
[Required(ErrorMessage = "标段ID是必须的请先完善")]
[Display(Name = "标段ID")]
[StringLength(144)]
public string BID { get; set; }
/// <summary>
/// 施工总承包单位
/// </summary>
[Display(Name = "施工总承包单位")]
[StringLength(1200)]
public string ZC02 { get; set; }
/// <summary>
/// 工资专户名称
/// </summary>
[Display(Name = "工资专户名称")]
[StringLength(1200)]
public string ZC03 { get; set; }
/// <summary>
/// 工资专户开户行
/// </summary>
[Display(Name = "工资专户开户行")]
[StringLength(1200)]
public string ZC04 { get; set; }
/// <summary>
/// 工资专户账号
/// </summary>
[Display(Name = "工资专户账号")]
[StringLength(400)]
public string ZC05 { get; set; }
/// <summary>
/// 专户余额
/// </summary>
[Display(Name = "专户余额")]
public decimal? ZC06 { get; set; }
/// <summary>
/// 出账总金额
/// </summary>
[Display(Name = "出账总金额")]
public decimal? ZC07 { get; set; }
/// <summary>
/// 入账总金额
/// </summary>
[Display(Name = "入账总金额")]
public decimal? ZC08 { get; set; }
/// <summary>
/// 利息金额
/// </summary>
[Display(Name = "利息金额")]
public decimal? ZC09 { get; set; }
/// <summary>
/// 手续费金额
/// </summary>
[Display(Name = "手续费金额")]
public decimal? ZC10 { get; set; }
/// <summary>
/// 工资保证金
/// </summary>
[Display(Name = "工资保证金")]
public decimal? ZC11 { get; set; }
/// <summary>
/// 专户开户人
/// </summary>
[Display(Name = "专户开户人")]
[StringLength(80)]
public string ZC12 { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[Display(Name = "更新时间")]
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
[Display(Name = "更新人")]
[StringLength(152)]
public string UpdateUser { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
[Display(Name = "创建人")]
[StringLength(152)]
public string CreateUser { get; set; }
/// <summary>
/// 是否已删除
/// </summary>
[Display(Name = "是否已删除")]
public bool IsDeleted { get; set; }
}
}