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.
54 lines
1.2 KiB
54 lines
1.2 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.Logic
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 工作台使用数据
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DataContract]
|
||
|
public class StagingNumInput
|
||
|
{
|
||
|
[DataMember]
|
||
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工作台Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string stagingId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 使用数
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string num { get; set; }
|
||
|
[DataMember]
|
||
|
public string username { get; set; }
|
||
|
/// <summary>
|
||
|
/// 用户Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public int userId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建日期
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public DateTime? creationtime { get; set; } = DateTime.Now;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否删除:0:未删除、1:删除
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public int IsDelete { get; set; } = 0;
|
||
|
}
|
||
|
}
|