shopmodel.cs

来自「c#三层架构项目开发的全过程」· CS 代码 · 共 21 行

CS
21
字号
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Model.Branch
{
    public class ShopModel
    {
        #region 分店管理
        public int Shop_id { get; set; }
        public string Store_id { get; set; }
        public string Shop_name { get; set; }
        public string Shop_un { get; set; }
        public string Shop_address { get; set; }
        public string Shop_tel { get; set; }
        #endregion
   
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?