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

114 lines
2.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/***********************************************************
**项目名称:BZPT.Entity
**功能描述: WageBail 的摘要说明
**作 者: 此代码由CodeSmith生成。
**版 本 号: 1.0
**修改历史:
************************************************************/
namespace BZPT.Domains.Entity.Pro
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/// <summary>
///WageBail工资保证金
/// </summary>
[Serializable]
[Table(name:"Pro_WageBail")]
public partial class WageBail : EntityBase<string>, IPro, ILogicDelete
{
/// <summary>
/// 对应标段id
/// </summary>
[Required(ErrorMessage = "对应标段id是必须的请先完善")]
[Display(Name = "对应标段id")]
[StringLength(144)]
public string BID { get; set; }
/// <summary>
/// 保证金
/// </summary>
[Display(Name = "保证金")]
public decimal? BZC01 { get; set; }
/// <summary>
/// 备注
/// </summary>
[Display(Name = "备注")]
[StringLength(2147483647)]
public string BZC02 { get; set; }
/// <summary>
/// 保证金类型
/// </summary>
[Display(Name = "保证金类型")]
public int? BZC03 { get; set; }
/// <summary>
/// 文件地址
/// </summary>
[Display(Name = "文件地址")]
[StringLength(2000)]
public string BZC04 { get; set; }
/// <summary>
/// PDF地址
/// </summary>
[Display(Name = "PDF地址")]
[StringLength(2000)]
public string BZC05 { get; set; }
/// <summary>
/// 文件名称
/// </summary>
[Display(Name = "文件名称")]
[StringLength(2000)]
public string BZC06 { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[Display(Name = "更新时间")]
public DateTime? Update_Time { get; set; }
/// <summary>
/// 更新人
/// </summary>
[Display(Name = "更新人")]
[StringLength(152)]
public string Update_User { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
public DateTime? Create_Time { get; set; }
/// <summary>
/// 创建人
/// </summary>
[Display(Name = "创建人")]
[StringLength(152)]
public string Create_User { get; set; }
/// <summary>
/// 是否已删除
/// </summary>
[Display(Name = "是否已删除")]
public bool IsDeleted { get; set; }
}
}