1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| using System.ComponentModel.DataAnnotations;
|
| namespace MES.Service.Dto.webApi;
|
| /// <summary>
| /// 根据送货单号删除条码的请求模型
| /// </summary>
| public class DeleteByDeliveryNoRequest
| {
| /// <summary>
| /// 送货单号(必填,不能为空/空字符串)
| /// </summary>
| [Required(ErrorMessage = "送货单号 DeliveryNo 不能为空")]
| public string DeliveryNo { get; set; }
| }
|
|