mh_custom/wtmProject.Model/WTM_CONTRACT_FILE.cs

28 lines
715 B
C#
Raw Normal View History

2024-05-16 17:30:33 +08:00
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_CONTRACT_FILE
/// </summary>
[Table("WTM_CONTRACT_FILE")]
public class WTM_CONTRACT_FILE : TopBasePoco, ISubFile
{
public WTM_CONTRACT Contract { get; set; }
[Display(Name = "_Admin.Contract")]
public Guid? ContractId { get; set; }
public Guid FileId { get; set; }
public FileAttachment File { get; set; }
public int Order { get; set; }
}
}