using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace cylsg.Model.ECTEModel
|
{
|
|
/// <summary>
|
/// 工作计划附件表
|
/// </summary>
|
[Tenant("ECTESTOADB")]
|
[SugarTable("Oa_WorkPlan_Attachment")]
|
public class OaWorkPlanAttachment
|
{
|
/// <summary>
|
/// 主键ID
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
public int? Keyid { get; set; }
|
|
/// <summary>
|
/// 工作计划ID
|
/// </summary>
|
[SugarColumn(ColumnName = "OA_WorkPlanId")]
|
public int? OA_WorkPlanId { get; set; }
|
|
/// <summary>
|
/// 附件
|
/// </summary>
|
[SugarColumn(ColumnName = "PlanAttachment", Length = 500)]
|
public string? PlanAttachment { get; set; }
|
|
/// <summary>
|
/// 附件类型 1是发票 2 是附件 3是送货来源
|
/// </summary>
|
[SugarColumn(ColumnName = "AttachmentType")]
|
public int? AttachmentType { get; set; }
|
|
/// <summary>
|
/// 创建时间
|
/// </summary>
|
[SugarColumn(ColumnName = "CreateTime")]
|
public DateTime? CreateTime { get; set; }
|
|
/// <summary>
|
/// 操作员
|
/// </summary>
|
[SugarColumn(ColumnName = "Operator", Length = 20)]
|
public string? Operator { get; set; }
|
}
|
|
}
|