Sign in

wms / wms_NouYaWmsN5 · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_NouYaWmsN5
  • WebRepository
  • Domain
  • api
  • CustomersModel.cs
  • 首次提交
    17fb8ab7
    霍尔 authored
    2019-10-30 11:15:16 +0800  
    Browse Code »
CustomersModel.cs 341 Bytes
Edit Raw Blame History Permalink
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 CustomersModel
    {
        /// <summary>
        /// 客户数据列表
        /// </summary>
        public List<Customer> Data;
    }
}