namespace BPA.MES.Base.Application.Entitys { /// /// 名 称 :胖子天骄工艺基础信息 /// 创 建 人 :yangxiao /// 创建时间 : 2023/7/14 14:43:37 /// 描 述 : /// [SugarTable("craft_info")] public class Pztj_CraftsInfoEntity : DEntityBase { /// /// 工艺名称 /// public string Name { get; set; } /// /// 设备产品Id /// public string DeviceProductId { get; set; } /// /// 工艺描述 /// public string Description { get; set; } } }