using Kean.Infrastructure.Configuration; namespace Kean.Application.Query.ViewModels { /// /// 物料信息视图 /// public sealed class Material : MaterialProperty { /// /// 标识 /// public int Id { get; set; } /// /// 品类 /// public int? Category { get; set; } /// /// 物料组 /// public string Group { get; set; } /// /// 料号 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } } }