using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 海运出口备注请求 /// public class SeaExportRemarkReq { /// /// 主键Id /// public long Id { get; set; } /// /// 业务Id /// [Required] public long Pid { get; set; } /// /// 备注 /// public string Remark { get; set; } } }