mh_custom/wtmProject.Model/WTM_VISIT_PLAN_FILE.cs
2026-01-06 10:55:05 +08:00

28 lines
749 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WalkingTec.Mvvm.Core;
namespace wtmProject.Model
{
/// <summary>
/// WTM_VISIT_PLAN_FILE
/// </summary>
[Table("WTM_VISIT_PLAN_FILE")]
public class WTM_VISIT_PLAN_FILE : TopBasePoco, ISubFile
{
public WTM_VISIT_PLAN VisitPlan { get; set; }
[Display(Name = "拜访记录")]
public Guid? VisitPlanId { get; set; }
public Guid FileId { get; set; }
public FileAttachment File { get; set; }
public int Order { get; set; }
}
}