productmodel.cs
来自「c#三层架构项目开发的全过程」· CS 代码 · 共 30 行
CS
30 行
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model.Goods
{
public class ProductModel
{
#region 商品表
public string product_id { get; set; }
public int brand_id { get; set; }
public decimal product_saleprice { get; set; }
public decimal Product_costprice { get; set; }
public decimal Product_tradeprice { get; set; }
public string product_name { get; set; }
public string brand_name { get; set; }
public string producttype_color { get; set; }
public int producttype_s1 { get; set; }//商品尺码1
public int producttype_s2 { get; set; }//商品尺码2
public int producttype_s3 { get; set; }//商品尺码3
public int producttype_s4 { get; set; }//商品尺码4
public int producttype_s5 { get; set; }//商品尺码5
public int producttype_s6 { get; set; }//商品尺码6
public int producttype_s7 { get; set; }//商品尺码7
#endregion
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?