storemodel.cs
来自「c#三层架构项目开发的全过程」· CS 代码 · 共 26 行
CS
26 行
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model.Store
{
public class StoreModel
{
#region 库存
public int store_id { get; set; }
public string product_id { get; set; }
public string store_color { get; set; }
public int store_type { get; set; }
public int store_size1 { get; set; }
public int store_size2 { get; set; }
public int store_size3 { get; set; }
public int store_size4 { get; set; }
public int store_size5 { get; set; }
public int store_size6 { get; set; }
public int store_size7 { get; set; }
public int store_sum { get; set; }
#endregion
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?