33 lines
673 B
C#
33 lines
673 B
C#
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DM_Dal.Models
|
|||
|
{
|
|||
|
//交接班表
|
|||
|
public class HkcChangeShifts
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public DateTime? OptDate { get; set; }
|
|||
|
|
|||
|
public string FromOperator { get; set; }
|
|||
|
|
|||
|
public string FromRviewer { get; set; }
|
|||
|
public string ToOperator { get;set; }
|
|||
|
|
|||
|
public string ToReviewer { get; set; }
|
|||
|
|
|||
|
public DateTime? ToDate { get; set; }
|
|||
|
|
|||
|
public string State { get; set; }
|
|||
|
|
|||
|
public string OptState { get; set; }
|
|||
|
|
|||
|
public string Machineid { get; set; }
|
|||
|
}
|
|||
|
}
|