⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cst_lost.cs

📁 客户关系管理系统 客户关系管理系统
💻 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 + -