Blame view

WebRepository/Domain/api/MaterialsModel.cs 341 Bytes
霍尔 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 物料
	/// </summary>
    public partial class MaterialsModel
    {
        /// <summary>
        /// 物料数据列表
        /// </summary>
        public List<Material> Data;
    }
}