?? checks.cs
字號:
using System;
namespace AdminGoods
{
/// <summary>
/// Checks 的摘要說明。
/// </summary>
public class Checks
{
public Checks()
{
//
// TODO: 在此處添加構造函數邏輯
//
}
// [ID] [bigint] IDENTITY (1, 1) NOT NULL ,
public int ID;
// [assetsID] [bigint] NOT NULL ,
public int assetsID;
// [workerID] [bigint] NOT NULL ,
public int workerID;
// [checkDate] [datetime] NOT NULL ,
public System.DateTime checkDate;
// [realValue] [float] NOT NULL ,
public float realValue;
// [markValue] [float] NOT NULL
public float markValue;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -