⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 productmodel.cs

📁 c#三层架构项目开发的全过程
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -