对比新文件 |
| | |
| | | 锘縰sing System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.Attributes; |
| | | |
| | | namespace WIDESEA_DTO.Outbound |
| | | { |
| | | [ModelValidate] |
| | | public class OutboundOrderAddDTO |
| | | { |
| | | /// <summary> |
| | | /// 涓婃父鍗曟嵁缂栧彿 |
| | | /// </summary> |
| | | public string UpperOrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 鍗曟嵁缂栧彿 |
| | | /// </summary> |
| | | public string OrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 鍗曟嵁绫诲瀷 |
| | | /// </summary> |
| | | [PropertyValidate("鍗曟嵁绫诲瀷", NotNullAndEmpty = true)] |
| | | public int OrderType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 澶囨敞 |
| | | /// </summary> |
| | | public string Remark { get; set; } |
| | | |
| | | [PropertyValidate("鍗曟嵁鏄庣粏淇℃伅", NotNullAndEmpty = true)] |
| | | public List<OutboundOrderDetailAddDTO> Details { get; set; } |
| | | } |
| | | } |