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; } }