precontract.cs

来自「will let you know the result once they r」· CS 代码 · 共 56 行

CS
56
字号
//============================================================
// 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 + =
减小字号Ctrl + -
显示快捷键?