using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 货架标准上位机 { /// /// 增删改查(CRUD)枚举 /// public enum CrudEnum { Create, Read, Update, Delete } }