namespace iWareSql.MyDbContext
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class wms_base_customer
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string CustCode { get; set; }
|
|
[Required]
|
[StringLength(255)]
|
public string CustChinaName { get; set; }
|
|
[StringLength(255)]
|
public string CustEnglishName { get; set; }
|
|
[StringLength(255)]
|
public string MnemonicCode { get; set; }
|
|
public int CustType { get; set; }
|
|
[StringLength(50)]
|
public string CustTypeName { get; set; }
|
|
[StringLength(50)]
|
public string LinkMan { get; set; }
|
|
[StringLength(50)]
|
public string Phone { get; set; }
|
|
[StringLength(50)]
|
public string Email { get; set; }
|
|
[StringLength(50)]
|
public string ZipCode { get; set; }
|
|
[StringLength(50)]
|
public string Province { get; set; }
|
|
[StringLength(50)]
|
public string City { get; set; }
|
|
[StringLength(255)]
|
public string Address { get; set; }
|
|
public bool IsDisabled { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
|
public long? CreateUserId { get; set; }
|
|
[StringLength(64)]
|
public string CreateUserName { get; set; }
|
|
public long? UpdateUserId { get; set; }
|
|
[StringLength(64)]
|
public string UpdateUserName { get; set; }
|
|
public bool IsDelete { get; set; }
|
}
|
}
|