tijian_tieying/web/dccdc.Models/ChargeMethodMaintainModel.cs

18 lines
394 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class ChargeMethodMaintainModel
{
public int id { get; set; }
public String charge_method { get; set; }
public String status { get; set; }
public String creator { get; set; }
public String create_time { get; set; }
}
}