cst_lost.cs
来自「客户关系管理系统 客户关系管理系统」· CS 代码 · 共 82 行
CS
82 行
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 + =
减小字号Ctrl + -
显示快捷键?