📄 product.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -