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_Customer", "客户表")]
|
public class Dt_Customer:BaseEntity
|
{
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
public int Id { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户编码")]
|
public string User_No { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户名称")]
|
public string User_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(Length =50,ColumnDescription = "邮箱")]
|
public string Email { get; set; }
|
|
[SugarColumn(Length = 200, ColumnDescription = "备注")]
|
public string Remark { get; set; }
|
|
|
}
|
}
|