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.
21 lines
610 B
21 lines
610 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
|
|
namespace SchedulingSystemClient.EntityClass |
|
{ |
|
public class Cus_SJTJ |
|
{ |
|
public int ID { get; set; } |
|
public DateTime PBRQ { get; set; } |
|
public string strPBRQ { get; set; } |
|
public decimal PJSSSC { get; set; } |
|
public string strPJSSSC { get; set; } |
|
public decimal PJQJSJ { get; set; } |
|
public string strPJQJSJ { get; set; } |
|
public decimal PJSSZSC { get; set; } |
|
public string strPJSSZSC { get; set; } |
|
public int SSTS { get; set; } |
|
} |
|
}
|
|
|