tijian_tieying/web/dccdc.Models/ChargeProjectMaintainModel.cs
2025-02-20 12:14:39 +08:00

32 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class ChargeProjectMaintainModel
{
public int id { get; set; }
public string charge_project_name { get; set; }
public string occupation_type { get; set; }
public string fee { get; set; }
public string pinyin_code { get; set; }
public string creator { get; set; }
public string create_time { get; set; }
public string status { get; set; }
public string is_vaccine { get; set; }
public string is_add { get; set;}
public string add_ids { get; set; }
public string general_status { get; set; }
public string balance_projectidone { get; set; }
public string balance_projectnameone { get; set; }
public string balance_projectidtwo { get; set; }
public string balance_projectnametwo { get; set; }
public string balance_projectidthree { get; set; }
public string balance_projectnamethree { get; set; }
public string costtype { get; set; }
public int? px { get; set; }
}
}