You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.8 KiB
76 lines
1.8 KiB
2 years ago
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Runtime.Serialization;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Elight.Entity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 云柜管理
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DataContract]
|
||
|
[SugarTable("app_cloudcabinet")]
|
||
|
public class App_CloudCabinetModel
|
||
|
{
|
||
|
[DataMember]
|
||
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
public string? Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 单位Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? unitId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 云柜编号
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? cabinetnumber { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 云柜位置
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? cabinetposition { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 云柜容量
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? cabinetcapacity { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 云柜状态:0空闲、:1使用中、2维护中
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public int state { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? createusername { get; set; }
|
||
|
/// <summary>
|
||
|
/// 创建人Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? createuserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建日期
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public DateTime? creationtime { get; set; } = DateTime.Now;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否删除:0:未删除、1:删除
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public int? IsDeleted { get; set; } = 0;
|
||
|
}
|
||
|
}
|