using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.PersonnelModule { /// /// 物品DTO /// public class GoodsDTO { } /// /// 物品List DTO /// public class GoodsListDTO : DtoBase { /// /// 类型Id /// 全部类型:"" /// 其他类型:"1,2,3,4,5" /// public string TypeIds { get; set; } public string GoodsName { get; set; } } /// /// 物品入库List DTO /// public class GoodsStorageListDTO : DtoBase { /// /// 物品Id /// public int GoodsId { get; set; } } /// /// 物品领用List DTO /// public class GoodsReceiveListDTO : DtoBase { /// /// 物品Id /// public int GoodsId { get; set; } } }