orders_line.cs

来自「客户关系管理系统 客户关系管理系统」· CS 代码 · 共 54 行

CS
54
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace MyCRM.Models
{
    public class Orders_line
    {
        private int odd_id;
        private Orders order_id;
        private Product product_id;
        private int odd_count;
        private string odd_unit;
        private decimal odd_price;


        public decimal Odd_price
        {
            get { return odd_price; }
            set { odd_price = value; }
        }

        public string Odd_unit
        {
            get { return odd_unit; }
            set { odd_unit = value; }
        }

        public int Odd_count
        {
            get { return odd_count; }
            set { odd_count = value; }
        }

        public Product Product_id
        {
            get { return product_id; }
            set { product_id = value; }
        }

        public Orders Order_id
        {
            get { return order_id; }
            set { order_id = value; }
        }

        public int Odd_id
        {
            get { return odd_id; }
            set { odd_id = value; }
        }
    }
}

⌨️ 快捷键说明

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