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 { public int Shift_id { get; set; } public string Shift_name { get; set; } public string Shift_st { get; set; } public string Shift_et { get; set; } public int? Shift_class { get; set; } } }