| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- 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
- {
- /// <summary>
- /// 供应商客户地址表
- /// </summary>
- [Comment("供应商客户地址表")]
- public class ConsigneeAddressMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 地址编码
- /// </summary>
- [Comment("地址编码")]
- public string Address { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 类型:区分客户(Cust)和供应商(Supp)
- /// </summary>
- [Comment("类型:区分客户(Cust)和供应商(Supp)")]
- public string Typed { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- [Comment("名称")]
- public string Name { get; set; }
- /// <summary>
- /// 联系电话
- /// </summary>
- [Comment("联系电话")]
- public string Telephone { get; set; }
- /// <summary>
- /// 邮箱
- /// </summary>
- [Comment("邮箱")]
- public string AttentionEmail { get; set; }
- /// <summary>
- /// 邮政编码
- /// </summary>
- [Comment("邮政编码")]
- public string Post { get; set; }
- /// <summary>
- /// 国家
- /// </summary>
- [Comment("国家")]
- public string Country { get; set; }
- /// <summary>
- /// 城市
- /// </summary>
- [Comment("城市")]
- public string City { get; set; }
- /// <summary>
- /// 区
- /// </summary>
- [Comment("区")]
- public string State { get; set; }
- /// <summary>
- /// 地址
- /// </summary>
- [Comment("地址")]
- public string Address1 { get; set; }
- /// <summary>
- /// 联系人
- /// </summary>
- [Comment("联系人")]
- public string Attention1 { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- }
- }
|