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.
36 lines
806 B
C#
36 lines
806 B
C#
using DS.WMS.Core.Fee.Entity;
|
|
using DS.WMS.Core.Op.Entity;
|
|
|
|
namespace DS.WMS.Core.Fee.Dtos
|
|
{
|
|
public class FeeRecordSubmit
|
|
{
|
|
/// <summary>
|
|
/// 当前业务ID
|
|
/// </summary>
|
|
public long BusinessId { get; set; }
|
|
|
|
public BusinessType BusinessType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 要提交的费用项
|
|
/// </summary>
|
|
public List<FeeRecord> Items { get; set; }
|
|
}
|
|
|
|
public class FeeRecordByTemplate
|
|
{
|
|
/// <summary>
|
|
/// 当前业务ID
|
|
/// </summary>
|
|
public long BusinessId { get; set; }
|
|
|
|
public BusinessType BusinessType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 要引入费用模板的ID
|
|
/// </summary>
|
|
public long[] TemplateIdList { get; set; }
|
|
}
|
|
}
|