98 lines
2.4 KiB
C#
98 lines
2.4 KiB
C#
|
/***********************************************************
|
|||
|
**项目名称: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; }
|
|||
|
}
|
|||
|
}
|