12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using Ant.Entity;
- using MES.Production.Entity.Enum;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity.Entity
- {
-
-
-
- [Table("YW_Product")]
- public class YW_Product
- {
-
-
-
- [Column("id", IsPrimaryKey = true)]
- public string Id { set; get; } = string.Empty;
-
-
-
- public string Name { set; get; } = string.Empty;
-
-
-
- public string Code { set; get; } = string.Empty;
-
-
-
- public string Img { set; get; } = string.Empty;
-
-
-
- public string Info { set; get; } = string.Empty;
-
-
-
- public decimal Price { set; get; }
-
-
-
- public decimal BuyingPrice { set; get; }
-
-
-
- public int Stock { set; get; }
-
-
-
- public SaleEnum Sale { set; get; } = SaleEnum.Off;
-
-
-
- public int IsDelete { set; get; }
-
-
-
- public DateTime CreateDT { set; get; } = DateTime.Now;
-
-
-
- public string CreateBY { set; get; } = string.Empty;
-
-
-
- public DateTime ModifyDT { set; get; } = DateTime.Now;
-
-
-
- public string ModifyBY { set; get; } = string.Empty;
- }
- }
|