25 lines
801 B
C#
25 lines
801 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Bas_Supplier : BaseEntity
|
|
{
|
|
[Key]
|
|
public int SupplierId { get; set; }
|
|
public string SupplierName { get; set; }
|
|
public string FullName { get; set; }
|
|
public string Licence { get; set; }
|
|
public string Address { get; set; }
|
|
public string LinkMan { get; set; }
|
|
public string LinkPhone { get; set; }
|
|
public DateTime CTime { get; set; }
|
|
public int CreateUser { get; set; }
|
|
public DateTime? UTime { get; set; }
|
|
public int? UpdateUser { get; set; }
|
|
public string bankname { get; set; }
|
|
public string accountnumber { get; set; }
|
|
public string accountname { get; set; }
|
|
}
|
|
}
|