liuying
2024-12-01 508aa6caec58d6f4093b356c0a4f7ddccf4865bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Admin.NET.Core;
using System.ComponentModel.DataAnnotations;
 
namespace Admin.NET.Application;
 
 
public class UnlineForNGPackageInput
{
 
    /// <summary>
    /// 包装号
    /// </summary>
    public virtual string PackageCode { get; set; }
 
 
    /// <summary>
    /// NG原因
    /// </summary>
    public virtual string Reason { get; set; }
 
}