/*********************************************************** **项目名称:BZPT.Entity **功能描述: SpecialAccountExpenditure 的摘要说明 **作 者: 此代码由CodeSmith生成。 **版 本 号: 1.0 **修改历史: ************************************************************/ namespace BZPT.Domains.Entity.Pro { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; /// ///SpecialAccountExpenditure,专户出账 /// [Serializable] [Table(name:"Pro_SpecialAccountExpenditure")] public partial class SpecialAccountExpenditure : EntityBase, IPro { /// /// 专户ID /// [Required(ErrorMessage = "专户ID是必须的,请先完善")] [Display(Name = "专户ID")] [StringLength(144)] public string ZCID { get; set; } /// /// 出账日期 /// [Display(Name = "出账日期")] public DateTime? ZOC01 { get; set; } /// /// 出账金额(万元) /// [Display(Name = "出账金额(万元)")] public decimal? ZOC02 { get; set; } /// /// 出账用途 /// [Display(Name = "出账用途")] [StringLength(2000)] public string ZOC03 { get; set; } /// /// 账号余额(万元) /// [Display(Name = "账号余额(万元)")] public decimal? ZOC04 { get; set; } /// /// 备注 /// [Display(Name = "备注")] [StringLength(2147483647)] public string ZOC05 { get; set; } /// /// 更新时间 /// [Display(Name = "更新时间")] public DateTime? UpdateTime { get; set; } /// /// 更新人 /// [Display(Name = "更新人")] [StringLength(152)] public string UpdateUser { get; set; } /// /// 创建时间 /// [Display(Name = "创建时间")] public DateTime? CreateTime { get; set; } /// /// 创建人 /// [Display(Name = "创建人")] [StringLength(152)] public string CreateUser { get; set; } } }