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

103 lines
2.6 KiB
C#
Raw Normal View History

2025-03-02 23:30:03 +08:00
/***********************************************************
**:BZPT.Entity
**: SpecialAccountIncome
** : CodeSmith生成
** : 1.0
**
************************************************************/
namespace BZPT.Domains.Entity.Pro
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/// <summary>
///SpecialAccountIncome专户入账
/// </summary>
[Serializable]
[Table(name:"Pro_SpecialAccountIncome")]
public partial class SpecialAccountIncome : EntityBase<string>, IPro
{
/// <summary>
/// 专户ID
/// </summary>
[Required(ErrorMessage = "专户ID是必须的请先完善")]
[Display(Name = "专户ID")]
[StringLength(144)]
public string ZCID { get; set; }
/// <summary>
/// 人工费申请日期
/// </summary>
[Display(Name = "人工费申请日期")]
public DateTime? ZIC01 { get; set; }
/// <summary>
/// 人工费申请金额(万元)
/// </summary>
[Display(Name = "人工费申请金额(万元)")]
public decimal? ZIC02 { get; set; }
/// <summary>
/// 入账日期
/// </summary>
[Display(Name = "入账日期")]
public DateTime? ZIC03 { get; set; }
/// <summary>
/// 建设单位确认金额(万元)
/// </summary>
[Display(Name = "建设单位确认金额(万元)")]
public decimal? ZIC04 { get; set; }
/// <summary>
/// 人工费到账金额(万元)
/// </summary>
[Display(Name = "人工费到账金额(万元)")]
public decimal? ZIC05 { get; set; }
/// <summary>
/// 账号余额(万元)
/// </summary>
[Display(Name = "账号余额(万元)")]
public decimal? ZIC06 { 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; }
}
}