WMS相关文件添加,仅添加文件,可启动但未测试

This commit is contained in:
赵正易
2024-03-08 08:28:14 +08:00
parent a0ae0c35b0
commit b400063e1a
83 changed files with 3767 additions and 1 deletions

View File

@@ -0,0 +1,87 @@
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_receipt_order")]
public class WmsReceiptOrder
{
/// <summary>
///
///</summary>
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 入库单号
///</summary>
[SugarColumn(ColumnName = "receipt_order_no")]
public string ReceiptOrderNo { get; set; }
/// <summary>
/// 入库类型
///</summary>
[SugarColumn(ColumnName = "receipt_order_type")]
public int? ReceiptOrderType { get; set; }
/// <summary>
/// 供应商
///</summary>
[SugarColumn(ColumnName = "supplier_id")]
public long? SupplierId { get; set; }
/// <summary>
/// 订单号
///</summary>
[SugarColumn(ColumnName = "order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 订单金额
///</summary>
[SugarColumn(ColumnName = "payable_amount")]
public decimal? PayableAmount { get; set; }
/// <summary>
/// 入库状态
///</summary>
[SugarColumn(ColumnName = "receipt_order_status")]
public byte? ReceiptOrderStatus { 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>
/// 波次号
///</summary>
[SugarColumn(ColumnName = "wave_no")]
public string WaveNo { get; set; }
}
}