HKC_Blazor/MasaBlazorApp3/Pojo/HkcChangeShifts.cs

44 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using LinqToDB.Mapping;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasaBlazorApp3.Pojo
{
//交接班表
[Table("hkc_changeshifts")]
public class HkcChangeShifts
{
[Column("Id")]
public int Id { get; set; }
//操作时间
[Column("optDate")]
public DateTime optDate { get; set; }
//交班操作人
[Column("FromOperator")]
public string FromOperator { get; set; }
//交班审核人
[Column("FromRviewer")]
public string FromRviewer { get; set; }
//接班操作人
[Column("ToOperator")]
public string ToOperator { get; set; }
//接班审核人
[Column("ToReviewer")]
public string ToReviewer { get; set; }
//接班时间
[Column("ToDate")]
public DateTime ToDate { get; set; }
//当班状态0当前值班1已交班
[Column("State")]
public string State { get; set; }
//操作状态0新增1修改
[Column("optState")]
public string optState { get; set; }
[Column("machine_id")]
public string MachineId { get; set; }
}
}