You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
949 B
C#
39 lines
949 B
C#
using Myshipping.Application.Entity;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Myshipping.Application.Service.Fee.Dto
|
|
{
|
|
public class FeeRecordDto : FeeRecord
|
|
{
|
|
/// <summary>
|
|
/// 是否标记为修改
|
|
/// </summary>
|
|
public bool MarkModify { get; set; }
|
|
}
|
|
public class FeeRecordInputDto
|
|
{
|
|
/// <summary>
|
|
/// 业务ID
|
|
/// </summary>
|
|
public long BussId { get; set; }
|
|
}
|
|
public class FeeRecordSaveDto
|
|
{
|
|
/// <summary>
|
|
/// 待新增或修改费用列表
|
|
/// </summary>
|
|
public List<FeeRecordDto> SaveList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 待删除删除费用列表
|
|
/// </summary>
|
|
public List<FeeRecordDto> DeleteList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务ID
|
|
/// </summary>
|
|
public long BussId { get; set; }
|
|
}
|
|
}
|