You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haoliang-net/src/CncModels/Entity/WorkerMachine.cs

23 lines
512 B
C#

using System;
namespace CncModels.Entity
{
/// <summary>
/// cnc_worker_machine 工人-机床绑定表
/// </summary>
public class WorkerMachine
{
/// <summary>主键ID</summary>
public int Id { get; set; }
/// <summary>工人ID</summary>
public int WorkerId { get; set; }
/// <summary>机床ID</summary>
public int MachineId { get; set; }
/// <summary>创建时间</summary>
public DateTime CreatedAt { get; set; }
}
}