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.
27 lines
751 B
27 lines
751 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
|
|
namespace SchedulingSystem.EntityClass |
|
{ |
|
public class Cus_Qtcs |
|
{ |
|
public int ID { get; set; } |
|
public int? PBKSSJID { get; set; } |
|
public string PBKSSJ { get; set; } |
|
public int? MTPBSCID { get; set; } |
|
public string MTPBSC { get; set; } |
|
public int? SSMXSQZ { get; set; } |
|
public int? ZHXGSJID { get; set; } |
|
public string ZHXGSJ { get; set; } |
|
public DateTime? XGSJ { get; set; } |
|
public int? XGR { get; set; } |
|
|
|
public int? XXSJ { get; set; } |
|
public string strXXSJ { get; set; } |
|
public decimal? XXSC { get; set; } |
|
public string strXXSC { get; set; } |
|
|
|
} |
|
}
|
|
|