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
|
{
|
/// <summary>
|
/// 单据号
|
/// </summary>
|
[PropertyValidate("单据号", NotNullAndEmpty = true)]
|
public string code { get; set; }
|
|
/// <summary>
|
/// 明细id
|
/// </summary>
|
[PropertyValidate("明细id", NotNullAndEmpty = true)]
|
public string itemId { get; set; }
|
|
/// <summary>
|
/// 是否成功
|
/// </summary>
|
[PropertyValidate("是否成功")]
|
public bool success { get; set; }
|
}
|
}
|