using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
using Yitter.IdGenerator;
namespace Tnb.BasicData.Entities
{
///
///供应商联系人
///
[SugarTable("bas_supplier_contact")]
public partial class BasSupplierContact
{
public BasSupplierContact(){
}
///
/// Desc:编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public long id {get;set;} = YitIdHelper.NextId();
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? tenantid {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:False
///
public long supplierid {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:False
///
public string name {get;set;} = string.Empty;
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public string? phone {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:False
///
public short ismaincontact {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public string? attribute1 {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public string? attribute2 {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public string? attribute3 {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public string? timestamp {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public DateTime? lastmodificationtime {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public long? lastmodifieruserid {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public string? lastmodifierfullname {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:False
///
public DateTime creationtime {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public long? creatoruserid {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public string? creatorfullname {get;set;}
}
}