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.
26 lines
535 B
C#
26 lines
535 B
C#
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
|
|
{
|
|
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; }
|
|
|
|
}
|
|
}
|