cashregisterentity.cs
来自「一个超市管理系统,没有错误,非常好,里面什么都有!很使用,很有用」· CS 代码 · 共 67 行
CS
67 行
using System;
using System.Collections.Generic;
using System.Text;
namespace DaFanRongMIS.Model.CashRegister
{
class CashRegisterEntity
{
private string shopid;
public string Shopid
{
get { return shopid; }
set { shopid = value; }
}
private string id;
public string Id
{
get { return id; }
set { id = value; }
}
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
private string ip;
public string Ip
{
get { return ip; }
set { ip = value; }
}
private string hostname;
public string Hostname
{
get { return hostname; }
set { hostname = value; }
}
private string mac;
public string Mac
{
get { return mac; }
set { mac = value; }
}
private string hard;
public string Hard
{
get { return hard; }
set { hard = value; }
}
private string memo;
public string Memo
{
get { return memo; }
set { memo = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?