-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv_product_stock.cs
More file actions
42 lines (40 loc) · 1.67 KB
/
Copy pathv_product_stock.cs
File metadata and controls
42 lines (40 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//------------------------------------------------------------------------------
// <auto-generated>
// 這個程式碼是由範本產生。
//
// 對這個檔案進行手動變更可能導致您的應用程式產生未預期的行為。
// 如果重新產生程式碼,將會覆寫對這個檔案的手動變更。
// </auto-generated>
//------------------------------------------------------------------------------
namespace CoffeeBackEnd20221026
{
using System;
using System.Collections.Generic;
public partial class v_product_stock
{
public string StockID { get; set; }
public string ProductID { get; set; }
public string ProductName { get; set; }
public Nullable<short> Qty { get; set; }
public string Uom { get; set; }
public Nullable<short> Price { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public string Country { get; set; }
public string Baking { get; set; }
public string Flavor { get; set; }
public Nullable<bool> Dripbag { get; set; }
public Nullable<System.DateTime> Timelimit { get; set; }
public Nullable<byte> Fragrance { get; set; }
public Nullable<byte> Sour { get; set; }
public Nullable<byte> Bitter { get; set; }
public Nullable<byte> Sweet { get; set; }
public Nullable<byte> STRONG { get; set; }
public string Method { get; set; }
public string ImgA { get; set; }
public string ImgB { get; set; }
public string ImgC { get; set; }
public string ImgD { get; set; }
public Nullable<short> Weight { get; set; }
}
}