📄 precontract.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-7-16 10:19:12
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace MyOffice.Models
{
[Serializable()]
public class PreContract
{
private int preContractid;
private Schedule schedule;
private UserInfo user;
public PreContract() { }
public int PreContractid
{
get { return this.preContractid; }
set { this.preContractid = value; }
}
public Schedule Schedule
{
get { return this.schedule; }
set { this.schedule = value; }
}
public UserInfo User
{
get { return this.user; }
set { this.user = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -