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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 实体类Pmt_Shiftime
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class Pmt_Shiftime
|
|
|
|
|
{
|
|
|
|
|
#region 私有字段
|
|
|
|
|
|
|
|
|
|
private int? _shift_id;
|
|
|
|
|
private string _shift_name;
|
|
|
|
|
private string _shift_st;
|
|
|
|
|
private string _shift_et;
|
|
|
|
|
private int? _shift_class;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 公有属性
|
|
|
|
|
|
|
|
|
|
public int? Shift_id
|
|
|
|
|
{
|
|
|
|
|
get { return _shift_id; }
|
|
|
|
|
set { _shift_id = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Shift_name
|
|
|
|
|
{
|
|
|
|
|
get { return _shift_name; }
|
|
|
|
|
set { _shift_name = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Shift_st
|
|
|
|
|
{
|
|
|
|
|
get { return _shift_st; }
|
|
|
|
|
set { _shift_st = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Shift_et
|
|
|
|
|
{
|
|
|
|
|
get { return _shift_et; }
|
|
|
|
|
set { _shift_et = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int? Shift_class
|
|
|
|
|
{
|
|
|
|
|
get { return _shift_class; }
|
|
|
|
|
set { _shift_class = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|