using Myshipping.Application.Entity; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Myshipping.Application.Service.Fee.Dto { public class FeeRecordDto : FeeRecord { /// /// 是否标记为删除 /// public bool MarkDelete { get; set; } /// /// 是否标记为修改 /// public bool MarkModify { get; set; } } public class FeeRecordInputDto { /// /// 业务ID /// public long BussId { get; set; } } public class FeeRecordSaveDto { public List FeeRecordList { get; set; } } }