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