using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.Domain
{
///
/// 供应商客户地址表
///
[Comment("供应商客户地址表")]
public class ConsigneeAddressMaster
{
///
/// 主键
///
[Comment("主键")]
[Key]
public int RecID { get; set; }
///
/// 地址编码
///
[Comment("地址编码")]
public string Address { get; set; }
///
/// 域名
///
[Comment("域名")]
public string Domain { get; set; }
///
/// 类型:区分客户(Cust)和供应商(Supp)
///
[Comment("类型:区分客户(Cust)和供应商(Supp)")]
public string Typed { get; set; }
///
/// 名称
///
[Comment("名称")]
public string Name { get; set; }
///
/// 联系电话
///
[Comment("联系电话")]
public string Telephone { get; set; }
///
/// 邮箱
///
[Comment("邮箱")]
public string AttentionEmail { get; set; }
///
/// 邮政编码
///
[Comment("邮政编码")]
public string Post { get; set; }
///
/// 国家
///
[Comment("国家")]
public string Country { get; set; }
///
/// 城市
///
[Comment("城市")]
public string City { get; set; }
///
/// 区
///
[Comment("区")]
public string State { get; set; }
///
/// 地址
///
[Comment("地址")]
public string Address1 { get; set; }
///
/// 联系人
///
[Comment("联系人")]
public string Attention1 { get; set; }
///
/// 是否有效:1-有效;0-无效
///
[Comment("是否有效")]
public bool IsActive { get; set; }
}
}