tijian_tieying/web/dccdc.Models/OpeningrecordModel.cs

21 lines
526 B
C#
Raw Permalink 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 OpeningrecordModel
{
public int id { get; set; }
public int sbid { get; set; }
public string openid { get; set; }
public int kmlx { get; set; }
public DateTime kmsj { get; set; }
public int ygid { get; set; }
public string sbygid { get; set; }
public string sbmc { get; set; }
public string ygmc { get; set; }
}
}