1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using Ant.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity.Entity
- {
-
-
-
- [Table("YW_DeviceProduct")]
- public class YW_DeviceProduct
- {
-
-
-
- [Column("id", IsPrimaryKey = true)]
- public string Id { set; get; } = string.Empty;
-
-
-
- public string DeviceId { set; get; } = string.Empty;
-
-
-
- public string ProductId { set; get; } = string.Empty;
-
-
-
- public decimal Price { set; get; }
-
-
-
- public int Stock { set; get; }
-
-
-
- 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;
- }
- }
|