using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.DB.Models;
|
|
namespace WIDESEA_Model.Models
|
{
|
[SugarTable("Dt_Supplier", "供应商表")]
|
public class Dt_Supplier:BaseEntity
|
{
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
public int Id { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "供应商编码")]
|
public string Supplier_no { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "供应商名称")]
|
public string Supplier_name { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "电话")]
|
public string Telephone { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 70, ColumnDescription = "地址")]
|
public string Address { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "邮箱")]
|
public string Email { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "备注")]
|
public string Remark { get; set; }
|
|
|
}
|
}
|