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