123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- 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_DevicePacking")]
- public class YW_DevicePacking
- {
-
-
-
- [Column("ID", IsPrimaryKey = true)]
- public string Id { set; get; } = string.Empty;
-
-
-
- public string PackingId { set; get; } = string.Empty;
-
-
-
- public string DeviceId { set; get; } = string.Empty;
-
-
-
- public int Capacity { set; get; } = 1;
-
-
-
- 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;
- }
- }
|