You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
624 B
C#
22 lines
624 B
C#
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; }
|
|
}
|
|
} |