109,901
社区成员




namespace PosClient
{
class Store
{
public DateTime update;
public string storeid;
public string storename;
public int number;
public double unitprice;
public double totalprice;
public double income;
public string editer;
public string voucher;
public string remark;
public string vipid;
public bool apart;
public string listid;
public Store(DateTime x1,string x2,string x3,int x4,double x5,double x6,double x7,string x8,string x9,string x10,string x11,bool x12,string x13)
{
update = x1;
storeid = x2;
storename = x3;
number = x4;
unitprice = x5;
totalprice = x6;
income = x7;
editer = x8;
voucher = x9;
remark = x10;
vipid = x11;
apart = x12;
listid = x13;
if (!DataProof()) { MakeThorw(); }
}
private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 1)
{
Store.storeid = "????"
}
if (e.ColumnIndex == 2)
{
Store.x= "????"
}
if (e.ColumnIndex == 3)
{
Store.x= "????"
}
}
public Store(Dictionary<string, object> ddd)
{
update = (DateTime)ddd["update"];
.......
}