using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.Check
{
public class CheckAuditDto
{
///
/// 业务号
///
public string opNo { get; set; }
///
/// 盘点单备注
///
public string note { get; set; }
///
/// 审核意见
///
public string auditContent { get; set; }
///
/// 审核机构信息
///
public CheckAuditOrgDto checkAuditOrgDto { get; set; }
}
}