You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
368 B
16 lines
368 B
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi.Parts
|
|
{
|
|
/// <summary>
|
|
/// 零件创建Dto
|
|
/// </summary>
|
|
public class PartCreateDTO : PartCreateOrUpdateDTOBase
|
|
{
|
|
/// <summary>
|
|
/// 代码(Code)
|
|
/// </summary>
|
|
[Display(Name = "代码")]
|
|
public string Code { get; set; }
|
|
}
|
|
}
|