using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace BookingJieFeng.DB.Model
{
    [Table("t_crm_client")]
    public class t_crm_client
    {
        [Key]
        public string 客户简称 { get; set; }
        public string 邮箱 { get; set; }
        public string 代码 { get; set; }
        public string EDI代码 { get; set; }
        public bool? 船公司 { get; set; }
        public bool? 场站 { get; set; }
        public string 东胜代码 { get; set; }
    }
}