2024-03-12 17:41:03 +08:00

69 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace ZR.Model.MES.wms
{
/// <summary>
/// 波次
///</summary>
[SugarTable("wms_wave")]
public class WmsWave
{
/// <summary>
///
///</summary>
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 波次号
///</summary>
[SugarColumn(ColumnName = "wave_no")]
public string WaveNo { get; set; }
/// <summary>
/// 状态
///</summary>
[SugarColumn(ColumnName = "status")]
public string Status { get; set; }
/// <summary>
/// 备注
///</summary>
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
/// <summary>
/// 删除标识
/// 默认值: 0
///</summary>
[SugarColumn(ColumnName = "del_flag")]
public byte DelFlag { get; set; }
/// <summary>
/// 创建人
///</summary>
[SugarColumn(ColumnName = "create_by")]
public long? CreateBy { get; set; }
/// <summary>
/// 创建时间
///</summary>
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 修改人
///</summary>
[SugarColumn(ColumnName = "update_by")]
public long? UpdateBy { get; set; }
/// <summary>
/// 修改时间
///</summary>
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 1入库单 2出库单
/// 默认值: 2
///</summary>
[SugarColumn(ColumnName = "type")]
public int? Type { get; set; }
}
}