using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.Entity { /// /// 实体类Pmt_Shiftime /// [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 } }