using BPA.KitChen.GroupMeal.Application.BaseDto; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.KitChenManage.Application.Device.Dtos { public class DevicePushRecodeDtoPageInput: PageInputBase { /// /// 下发类型1商品 2物料 3配方 /// public int Type { get; set; } public string DeviceName { get; set; } } }