product.cs

来自「客户关系管理系统 客户关系管理系统」· CS 代码 · 共 61 行

CS
61
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace MyCRM.Models
{
    public class Product
    {
        private int product_id;
        private string product_name;
        private string product_type;
        private string product_batch;
        private string product_unit;
        private decimal product_price;
        private string product_memo;


        public string Product_memo
        {
            get { return product_memo; }
            set { product_memo = value; }
        }

        public decimal Product_price
        {
            get { return product_price; }
            set { product_price = value; }
        }

        public string Product_unit
        {
            get { return product_unit; }
            set { product_unit = value; }
        }

        public string Product_batch
        {
            get { return product_batch; }
            set { product_batch = value; }
        }

        public string Product_type
        {
            get { return product_type; }
            set { product_type = value; }
        }

        public string Product_name
        {
            get { return product_name; }
            set { product_name = value; }
        }

        public int Product_id
        {
            get { return product_id; }
            set { product_id = value; }
        }
    }
}

⌨️ 快捷键说明

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