24 lines
542 B
C#
24 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Entity.Constraints
|
|
{
|
|
/// <summary>
|
|
/// 修改出入库检验状态
|
|
/// </summary>
|
|
public interface InOutCheckStatusUpdateEntity
|
|
{
|
|
/// <summary>
|
|
/// 检验状态
|
|
/// </summary>
|
|
public int? check_conclusion { get; set; }
|
|
/// <summary>
|
|
/// 是否检验
|
|
/// </summary>
|
|
public int? is_check { get;}
|
|
}
|
|
}
|