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.
51 lines
1.1 KiB
51 lines
1.1 KiB
using Elight.Utility.Code; |
|
using SqlSugar; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Runtime.Serialization; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Elight.Logic |
|
{ |
|
/// <summary> |
|
/// 云柜管理 |
|
/// </summary> |
|
[Serializable] |
|
[DataContract] |
|
public class App_CloudCabinetInput : Paging |
|
{ |
|
[DataMember] |
|
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; } |
|
} |
|
}
|
|
|