28 lines
582 B
C#
28 lines
582 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FactoryDatabaseImplement.Models
|
|||
|
{
|
|||
|
public class PlanLathe
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
[Required]
|
|||
|
public int PlanId { get; set; }
|
|||
|
|
|||
|
[Required]
|
|||
|
public int LatheId { get; set; }
|
|||
|
|
|||
|
[Required]
|
|||
|
public int Count { get; set; }
|
|||
|
|
|||
|
public virtual Plan Plan { get; set; } = new();
|
|||
|
|
|||
|
public virtual Lathe Lathe { get; set; } = new();
|
|||
|
}
|
|||
|
}
|