?? cst_lost.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace MyCRM.Models
{
public class Cst_lost
{
private int lost_id;
private Cst_customer customer;
private string lost_customer_name;
private int lost_customer_manager_id;
private string lost_customer_manager_name;
private DateTime lost_last_order_date;
private DateTime lost_lost_date;
private string lost_delay;
private string lost_reason;
private string lost_status;
public string Lost_status
{
get { return lost_status; }
set { lost_status = value; }
}
public string Lost_reason
{
get { return lost_reason; }
set { lost_reason = value; }
}
public string Lost_delay
{
get { return lost_delay; }
set { lost_delay = value; }
}
public DateTime Lost_lost_date
{
get { return lost_lost_date; }
set { lost_lost_date = value; }
}
public DateTime Lost_last_order_date
{
get { return lost_last_order_date; }
set { lost_last_order_date = value; }
}
public string Lost_customer_manager_name
{
get { return lost_customer_manager_name; }
set { lost_customer_manager_name = value; }
}
public int Lost_customer_manager_id
{
get { return lost_customer_manager_id; }
set { lost_customer_manager_id = value; }
}
public string Lost_customer_name
{
get { return lost_customer_name; }
set { lost_customer_name = value; }
}
public Cst_customer Customer
{
get { return customer; }
set { customer = value; }
}
public int Lost_id
{
get { return lost_id; }
set { lost_id = value; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -