You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
|
|
namespace SchedulingSystemClient.EntityClass |
|
{ |
|
/// <summary> |
|
/// 数据库排班表 |
|
/// </summary> |
|
public class Cus_SJKPBB |
|
{ |
|
public int ID { get; set; } |
|
public string SQDH { get; set; } |
|
public DateTime? SSKSSJ { get; set; } |
|
public decimal? SSZSC { get; set; } |
|
public int? SSSID { get; set; } |
|
public int? ZS1 { get; set; } |
|
public int? ZS2 { get; set; } |
|
public int? ZS3 { get; set; } |
|
public int? MZYS1 { get; set; } |
|
public int? MZYS2 { get; set; } |
|
public int? MZYS3 { get; set; } |
|
public int? XSHS1 { get; set; } |
|
public int? XSHS2 { get; set; } |
|
public int? XHHS1 { get; set; } |
|
public int? XHHS2 { get; set; } |
|
public string BZ { get; set; } |
|
public int? PBZT { get; set; } |
|
public string ZYH { get; set; } |
|
public string HZXM { get; set; } |
|
public int? KSID { get; set; } |
|
public DateTime? SQSJ { get; set; } |
|
public string SQZD { get; set; } |
|
public int? ZDYS { get; set; } |
|
public bool? SFJZ { get; set; } |
|
public string ZLKH { get; set; } |
|
public int? QZ { get; set; } |
|
public decimal? SSSC { get; set; } |
|
public decimal? QJSC { get; set; } |
|
public DateTime? SSJSSJ { get; set; } |
|
public int? SSID { get; set; } |
|
public DateTime? SSRQ { get; set; } |
|
} |
|
}
|
|
|