using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Service.BookingOrder.Dto { public class BookingRemarkDto { /// /// 备注id /// public long Id { get; set; } /// /// 业务id /// public long PId { get; set; } /// /// 备注 /// public string Remark { get; set; } } }