using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Entity.Constraints { /// /// 修改出入库检验状态 /// public interface InOutCheckStatusUpdateEntity { /// /// 检验状态 /// public int? check_conclusion { get; set; } /// /// 是否检验 /// public int? is_check { get; set; } } }