using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace DocumentServiceAPI.Model.cyDocumentModel
{
///
///
///
[SugarTable("Document_PerformanceInfo")]
public partial class Document_PerformanceInfo
{
///
/// ID
/// 默认值:
/// 可空:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 员工ID
/// 默认值:
/// 可空:True
///
public int? EmployeeId { get; set; }
///
/// 项目名称
/// 默认值:
/// 可空:True
///
public string ProjectName { get; set; }
///
/// 工作项
/// 默认值:
/// 可空:True
///
public string WorkItem { get; set; }
///
/// 价格
/// 默认值:
/// 可空:True
///
public decimal? Price { get; set; }
///
/// 工作时间
/// 默认值:
/// 可空:True
///
public DateTime? WorkTime { get; set; }
///
/// 员工姓名
/// 默认值:
/// 可空:True
///
public string EmployeeName { get; set; }
}
}