28 lines
749 B
C#
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; }
|
|
}
|
|
}
|