using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.Attributes;
namespace WIDESEA_DTO.ERP
{
public class FeedbackInboundOrderERP
{
///
/// 单据号
///
[PropertyValidate("单据号", NotNullAndEmpty = true)]
public string code { get; set; }
///
/// 明细id
///
[PropertyValidate("明细id", NotNullAndEmpty = true)]
public string itemId { get; set; }
///
/// 是否成功
///
[PropertyValidate("是否成功")]
public bool success { get; set; }
}
}