compositekey.cs

来自「oracle dal gen,生成.NET ORACLE DAL层代码」· CS 代码 · 共 71 行

CS
71
字号
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.312
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace DAL
{
    using System;
    using System.Data;
    using System.Collections.Generic;
    using OracleDALGen.Classes.Attributes;


    [OracleDALGen.Classes.Attributes.ClassDatabaseType("composite_key$.get_composite_key", Method.Select, CommandType.StoredProcedure)]
    [OracleDALGen.Classes.Attributes.ClassDatabaseType("composite_key$.merge_composite_key", Method.Merge, CommandType.StoredProcedure)]
    [OracleDALGen.Classes.Attributes.ClassDatabaseType("composite_key$.delete_composite_key", Method.Delete, CommandType.StoredProcedure)]
    public class CompositeKey
    {

        private decimal id;

        private string name;

        private string description;

        [OracleDALGen.Classes.IdColumn("ID")]
        public virtual decimal Id
        {
            get
            {
                return this.id;
            }
            set
            {
                this.id = value;
            }
        }

        [OracleDALGen.Classes.IdColumn("NAME")]
        public virtual string Name
        {
            get
            {
                return this.name;
            }
            set
            {
                this.name = value;
            }
        }

        [OracleDALGen.Classes.DbColumn("DESCRIPTION")]
        public virtual string Description
        {
            get
            {
                return this.description;
            }
            set
            {
                this.description = value;
            }
        }
    }
}

⌨️ 快捷键说明

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