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