using IStation.Model;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class ProductModifyRecordExFileCountOutput : ProductModifyRecordDto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public ProductModifyRecordExFileCountOutput() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public ProductModifyRecordExFileCountOutput(Model.ProductModifyRecord rhs) : base(rhs)
|
{
|
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public ProductModifyRecordExFileCountOutput(Model.ProductModifyRecord rhs, int fileCount) : base(rhs)
|
{
|
this.FileCount = fileCount;
|
}
|
|
|
/// <summary>
|
/// 附件数量
|
/// </summary>
|
public int FileCount { get; set; }
|
}
|
}
|