75 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace Model
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 
 | 
						|
    /// </summary>
 | 
						|
    public class Environmental_OperationReportDto
 | 
						|
    {
 | 
						|
        public string BusinessReportId { get; set; }
 | 
						|
 | 
						|
        public string UnitId { get; set; }
 | 
						|
 | 
						|
        public int? Year { get; set; }
 | 
						|
 | 
						|
        public int? Quarters { get; set; }
 | 
						|
 | 
						|
        
 | 
						|
 | 
						|
        public string FillingMan { get; set; }
 | 
						|
 | 
						|
        public DateTime? FillingDate { get; set; }
 | 
						|
 | 
						|
        public string StatisticsDutyPerson { get; set; }
 | 
						|
 | 
						|
        public string UnitDutyPerson { get; set; }
 | 
						|
 | 
						|
        public string Remark { get; set; }
 | 
						|
 | 
						|
        public string UpState { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 子表数据
 | 
						|
        /// </summary>
 | 
						|
        public List<reportItemListDto> reportItemList
 | 
						|
        {
 | 
						|
            get;
 | 
						|
            set;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// 
 | 
						|
    /// </summary>
 | 
						|
    public class reportItemListDto
 | 
						|
    {
 | 
						|
        public string BusinessReportItemId { get; set; }
 | 
						|
        public string BusinessReportId { get; set; }
 | 
						|
        public int? SortIndex { get; set; }
 | 
						|
        public string Code { get; set; }
 | 
						|
 | 
						|
        public string UnitLevel { get; set; }
 | 
						|
 | 
						|
        public DateTime? CreateDate { get; set; }
 | 
						|
 | 
						|
        public string Place { get; set; }
 | 
						|
 | 
						|
        public int? PersonNum { get; set; }
 | 
						|
 | 
						|
        public decimal? TotalAssets { get; set; }
 | 
						|
 | 
						|
        public decimal? TotalValue { get; set; }
 | 
						|
 | 
						|
        public decimal? NewInvestment { get; set; }
 | 
						|
 | 
						|
        public string UnitName { get; set; }
 | 
						|
 | 
						|
        public string SortUnitName { get; set; }
 | 
						|
    }
 | 
						|
}
 |