using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 日常费用付款申请多表联查类 /// public class ViewDailyFeePayment { string priceName; /// /// 费用名称 /// public string PriceName { get { return priceName; } set { priceName = value; } } int count; /// /// 数量 /// public int Count { get { return count; } set { count = value; } } float price; /// /// 单价 /// public float Price { get { return price; } set { price = value; } } float itemSumPrice; /// /// 单项总和 /// public float ItemSumPrice { get { return itemSumPrice; } set { itemSumPrice = value; } } string remark; /// /// 备注 /// public string Remark { get { return remark; } set { remark = value; } } /// /// 费用说明、简介 /// public string Instruction { get; set; } /// /// 费用一级类别 /// public string PriceTypeNameOne { get; set; } /// /// 费用次级类别 /// public string PriceTypeName { get; set; } /// /// 费用审核状态 /// public string Audit { get; set; } /// /// 录入人 /// public string OpName { get; set; } } }