using Myshipping.Application.Entity;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Myshipping.Application.Service.Fee.Dto
{
public class FeeRecordDto : FeeRecord
{
///
/// 是否标记为修改
///
public bool MarkModify { get; set; }
}
public class FeeRecordInputDto
{
///
/// 业务ID
///
public long BussId { get; set; }
}
public class FeeRecordSaveDto
{
///
/// 待新增或修改费用列表
///
public List SaveList { get; set; }
///
/// 待删除删除费用列表
///
public List DeleteList { get; set; }
///
/// 业务ID
///
public long BussId { get; set; }
}
}