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

98 lines
2.4 KiB
C#
Raw Normal View History

2025-03-02 23:30:03 +08:00
/***********************************************************
**:BZPT.Entity
**: SpecialAccountExpenditure
** : CodeSmith生成
** : 1.0
**
************************************************************/
namespace BZPT.Domains.Entity.Pro
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/// <summary>
///SpecialAccountExpenditure专户出账
/// </summary>
[Serializable]
[Table(name:"Pro_SpecialAccountExpenditure")]
public partial class SpecialAccountExpenditure : 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? ZOC01 { get; set; }
/// <summary>
/// 出账金额(万元)
/// </summary>
[Display(Name = "出账金额(万元)")]
public decimal? ZOC02 { get; set; }
/// <summary>
/// 出账用途
/// </summary>
[Display(Name = "出账用途")]
[StringLength(2000)]
public string ZOC03 { get; set; }
/// <summary>
/// 账号余额(万元)
/// </summary>
[Display(Name = "账号余额(万元)")]
public decimal? ZOC04 { get; set; }
/// <summary>
/// 备注
/// </summary>
[Display(Name = "备注")]
[StringLength(2147483647)]
public string ZOC05 { 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; }
}
}