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

📄 cst_activity.cs

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

namespace MyCRM.Models
{
    public class Cst_activity
    {
        private int activity_id;
        private string activity_momo;

        public string Activity_momo
        {
            get { return activity_momo; }
            set { activity_momo = value; }
        }

        private Cst_customer customer;

        public Cst_customer Customer
        {
            get { return customer; }
            set { customer = value; }
        }

        private string activity_cust_name;
        private DateTime activity_date;
        private string activity_place;
        private string activity_title;
        private string activity_desc;


        public string Activity_desc
        {
            get { return activity_desc; }
            set { activity_desc = value; }
        }

        public string Activity_title
        {
            get { return activity_title; }
            set { activity_title = value; }
        }

        public string Activity_place
        {
            get { return activity_place; }
            set { activity_place = value; }
        }

        public DateTime Activity_date
        {
            get { return activity_date; }
            set { activity_date = value; }
        }

        public string Activity_cust_name
        {
            get { return activity_cust_name; }
            set { activity_cust_name = value; }
        }

        public int Activity_id
        {
            get { return activity_id; }
            set { activity_id = value; }
        }
    }
}

⌨️ 快捷键说明

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