| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | { |
| | | |
| | | } |
| | | /// <summary> |
| | | /// 容å¨å
¥åºè¯·æ±åæ° |
| | | /// </summary> |
| | | public class ContainerInDTO |
| | | { |
| | | /// <summary> |
| | | /// è¯·æ± idï¼å¹ç uuid32 ä½ |
| | | /// </summary> |
| | | public string requestId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨ç±»å |
| | | /// è´§æ¶ï¼RACK |
| | | /// æç®±ï¼BIN(ææªå®ç°) |
| | | /// </summary> |
| | | public string containerType { get; set; } = "RACK"; |
| | | |
| | | /// <summary> |
| | | /// 容卿¨¡åç¼ç |
| | | /// å½ isNew=true æ¶å¿
ä¼ |
| | | /// </summary> |
| | | public string containerModelCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨ç¼å· |
| | | /// </summary> |
| | | public string containerCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨å
¥åºè§åº¦ |
| | | /// è´§æ¶å
¥åºæ¶å¯¹è§åº¦æç¹æ®è¦æ± |
| | | /// </summary> |
| | | public string enterOrientation { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨å½å对åºä½ç½® |
| | | /// </summary> |
| | | public string position { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ°å¢å®¹å¨ |
| | | /// é»è®¤å¼ï¼false |
| | | /// </summary> |
| | | public bool? isNew { get; set; } = false; |
| | | |
| | | /// <summary> |
| | | /// 容卿 ¡éªç |
| | | /// å½ isNew=true æ¶å¯ä»¥æå®æ¯å¦é
ç½® |
| | | /// </summary> |
| | | public string containerValidationCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦é
置容å¨é»è®¤æ ¡éªç |
| | | /// é»è®¤å¼ï¼false |
| | | /// å½ isNew=true æ¶é
置容å¨é»è®¤æ ¡éªç ï¼å容å¨ç¼å·ï¼ |
| | | /// </summary> |
| | | public bool? withDefaultValidationCode { get; set; } = false; |
| | | } |
| | | /// <summary> |
| | | /// 容å¨åºåºè¯·æ±åæ° |
| | | /// </summary> |
| | | public class ContainerOutDTO |
| | | { |
| | | /// <summary> |
| | | /// è¯·æ± idï¼å¹ç uuid32 ä½ |
| | | /// </summary> |
| | | public string requestId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨ç±»å |
| | | /// è´§æ¶ï¼RACK |
| | | /// æç®±ï¼BIN(ææªå®ç°) |
| | | /// é»è®¤å¼ï¼RACK |
| | | /// </summary> |
| | | public string containerType { get; set; } = "RACK"; |
| | | |
| | | /// <summary> |
| | | /// 容å¨ç¼å· |
| | | /// </summary> |
| | | public string containerCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨åºåºä½ç½® |
| | | /// </summary> |
| | | public string position { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åºåºåæ¯å¦å é¤ |
| | | /// é»è®¤å¼ï¼false |
| | | /// </summary> |
| | | public bool isDelete { get; set; } = false; |
| | | } |
| | | } |