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.
35 lines
1.1 KiB
35 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
|
|
namespace SchedulingSystemClient.EntityClass |
|
{ |
|
|
|
public class Cus_SSXXB |
|
{ |
|
public int ID { get; set; } |
|
public string SSBM { get; set; } |
|
public string SSMC { get; set; } |
|
public string PYSZM { get; set; } |
|
public int? YJSSSC { get; set; } |
|
public string strYJSSSC { get; set; } |
|
public int? SSJB { get; set; } |
|
public string strSSJB { get; set; } |
|
public int? SSQJD { get; set; } |
|
public string strSSQJD { get; set; } |
|
public int? MZYSZC { get; set; } |
|
public string strMZYSZC { get; set; } |
|
public int? XHHSZC { get; set; } |
|
public string strXHHSZC { get; set; } |
|
public bool? CJSS { get; set; } |
|
public string strCJSS { get; set; } |
|
public bool? IsICD { get; set; } |
|
public string strIsICD { get; set; } |
|
public int? intSSLX { get; set; } |
|
public string SSLX { get; set; } |
|
public bool? boolCYSS { get; set; } |
|
public string CYSS { get; set; } |
|
|
|
} |
|
}
|
|
|