using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.KitChenManage.Core.Base { public interface IDeleted { /// /// 是否删除 /// public int IsDeleted { get; set; } } }