采购收货、销售发货,新增审核、反审核功能
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Entity.Constraints
|
||||
{
|
||||
public interface IPurchaseAndSaleAuitEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 审核状态
|
||||
/// </summary>
|
||||
public int? audit_status { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.WarehouseMgr.Entities.Entity.Constraints;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
@@ -8,7 +9,7 @@ namespace Tnb.WarehouseMgr.Entities;
|
||||
/// 采购收货主表
|
||||
/// </summary>
|
||||
[SugarTable("wms_purchase_h")]
|
||||
public partial class WmsPurchaseH : BaseEntity<string>
|
||||
public partial class WmsPurchaseH : BaseEntity<string>, IPurchaseAndSaleAuitEntity
|
||||
{
|
||||
public WmsPurchaseH()
|
||||
{
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.WarehouseMgr.Entities.Entity.Constraints;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
@@ -8,7 +9,7 @@ namespace Tnb.WarehouseMgr.Entities;
|
||||
/// 销售发货主表
|
||||
/// </summary>
|
||||
[SugarTable("wms_sale_h")]
|
||||
public partial class WmsSaleH : BaseEntity<string>
|
||||
public partial class WmsSaleH : BaseEntity<string>, IPurchaseAndSaleAuitEntity
|
||||
{
|
||||
public WmsSaleH()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user