46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using Prism.Mvvm;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DM_Weight.Models
|
|
{
|
|
//交接班表
|
|
[SugarTable("hkc_changeshifts")]
|
|
public class HkcChangeShifts : BindableBase
|
|
{
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public int Id { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "optDate")]
|
|
public DateTime? OptDate { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "FromOperator")]
|
|
public string FromOperator { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "FromRviewer")]
|
|
public string FromRviewer { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "ToOperator")]
|
|
public string ToOperator { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "ToReviewer")]
|
|
public string ToReviewer { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "ToDate")]
|
|
public DateTime? ToDate { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "State")]
|
|
public string State { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "optState")]
|
|
public string OptState { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "machine_id")]
|
|
public string Machineid { get; set; }
|
|
}
|
|
}
|