using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 海运出口备注返回 /// public class SeaExportRemarkRes { /// /// 主键Id /// public long Id { get; set; } /// /// 业务Id /// public long Pid { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } } }