using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace IoTIntegrationPlatform.Model.Model
{
///
/// 客户信息
///
[SugarTable("customer_info")]
public class CustomerInfo
{
///
/// 客户id
///
[SugarColumn(ColumnName = "customer_id", IsPrimaryKey = true, IsIdentity = true)]
public int CustomerId { get; set; }
///
/// 客户编号
///
[SugarColumn(ColumnName = "customer_code")]
public string CustomerCode { get; set; }
///
/// 客户名称
///
[SugarColumn(ColumnName = "customer_name")]
public string CustomerName { get; set; }
///
/// 客户账号
///
[SugarColumn(ColumnName = "customer_account")]
public string CustomerAccount { get; set; }
///
/// 客户密码
///
[SugarColumn(ColumnName = "customer_password")]
public string CustomerPassword { get; set; }
///
/// 密码加密key
///
[SugarColumn(ColumnName = "secret_key")]
public string SecretKey { get; set; }
///
/// 客户地址
///
[SugarColumn(ColumnName = "customer_address")]
public string CustomerAddress { get; set; }
///
/// 联系人电话
///
[SugarColumn(ColumnName = "contact_name")]
public string ContactName { get; set; }
///
/// 联系人电话
///
[SugarColumn(ColumnName = "contact_number")]
public string ContactNumber { get; set; }
///
/// 资质照片
///
[SugarColumn(ColumnName = "aptitude_picture")]
public string AptitudePicture { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime CreateTime { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnName = "update_time")]
public DateTime UpdateTime { get; set; }
///
/// 操作人id
///
[SugarColumn(ColumnName = "operation_id")]
public int OperationId { get; set; }
///
/// 操作人名称
///
[SugarColumn(ColumnName = "operation_name")]
public string OperationName { get; set; }
///
/// 是否有效 0:否 1:是
///
[SugarColumn(ColumnName = "is_valid")]
public bool IsValid { get; set; }
}
}