CustomersModel.cs 341 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 客户
	/// </summary>
    public partial class CustomersModel
    {
        /// <summary>
        /// 客户数据列表
        /// </summary>
        public List<Customer> Data;
    }
}