12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity.Entity
- {
-
-
-
- public class BaseEntity
- {
-
-
-
- public string CreateDT { set; get; } = string.Empty;
-
-
-
- public string CreateBY { set; get; } = string.Empty;
-
-
-
- public string ModifyDT { set; get; } = string.Empty;
-
-
-
- public string ModifyBY { set; get; } = string.Empty;
- }
- }
|