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

📄 sal_chance.cs

📁 客户关系管理系统 客户关系管理系统
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace MyCRM.Models
{
    public class Sal_chance
    {
        private int chance_id;
        private string chance_source;
        private string chance_customer_name;
        private string chance_title;
        private int chance_rate;
        private string chance_linkman;
        private string chance_tel;
        private string chance_desc;
        private int chance_create_id;
        private string chance_create_by;
        private DateTime chance_create_date;
        private int chance_cue_id;
        private string chance_due_to;
        private DateTime chance_due_date;
        private string chance_status;


        public string Chance_status
        {
            get { return chance_status; }
            set { chance_status = value; }
        }

        public DateTime Chance_due_date
        {
            get { return chance_due_date; }
            set { chance_due_date = value; }
        }

        public string Chance_due_to
        {
            get { return chance_due_to; }
            set { chance_due_to = value; }
        }

        public int Chance_cue_id
        {
            get { return chance_cue_id; }
            set { chance_cue_id = value; }
        }

        public DateTime Chance_create_date
        {
            get { return chance_create_date; }
            set { chance_create_date = value; }
        }

        public string Chance_create_by
        {
            get { return chance_create_by; }
            set { chance_create_by = value; }
        }

        public int Chance_create_id
        {
            get { return chance_create_id; }
            set { chance_create_id = value; }
        }

        public string Chance_desc
        {
            get { return chance_desc; }
            set { chance_desc = value; }
        }

        public string Chance_tel
        {
            get { return chance_tel; }
            set { chance_tel = value; }
        }

        public string Chance_linkman
        {
            get { return chance_linkman; }
            set { chance_linkman = value; }
        }


        public int Chance_rate
        {
            get { return chance_rate; }
            set { chance_rate = value; }
        }

        public string Chance_title
        {
            get { return chance_title; }
            set { chance_title = value; }
        }

        public string Chance_customer_name
        {
            get { return chance_customer_name; }
            set { chance_customer_name = value; }
        }

        public string Chance_source
        {
            get { return chance_source; }
            set { chance_source = value; }
        }

        public int Chance_id
        {
            get { return chance_id; }
            set { chance_id = value; }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -