📄 product.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Y2T03.CourseScheduler.CourseModel
{
/// <summary>
/// 实体类 Product
/// </summary>
[Serializable]
public class Product
{
public Product()
{ }
#region 实体类 Product
private int _productid = 0;
private string _title = string.Empty;
/// <summary>
/// 教学产品编码
/// </summary>
public int ProductId
{
set { this._productid = value; }
get { return this._productid; }
}
/// <summary>
/// 教学产品描述
/// </summary>
public string Title
{
set { this._title = value; }
get { return this._title; }
}
public override string ToString()
{
return this._title;
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -