📄 orders_line.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -