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 SuppMaster
{
///
/// 主键
///
[Comment("主键")]
[Key]
public int RecID { get; set; }
///
/// 域名
///
[Comment("域名")]
public string Domain { get; set; }
///
/// 供应商代码
///
[Comment("供应商代码")]
public string Supp { get; set; }
///
/// 简称
///
[Comment("简称")]
public string SortName { get; set; }
///
/// 币别
///
[Comment("币别")]
public string Curr { get; set; }
///
/// 类型
///
[Comment("类型")]
public string Type { get; set; }
///
/// 支付方式
///
[Comment("支付方式")]
public string CrTerms { get; set; }
///
/// 是否有效:1-有效;0-无效
///
[Comment("是否有效")]
public bool IsActive { get; set; }
}
}