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

18 lines
461 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class BarCodeProjectMaintainModel
{
public int id { get; set; }
public string code_name { get; set; }
public int bar_code_maintain_id { get; set; }
public string project { get; set; }
public int exam_project_maintain_id { get; set; }
public string project_code { get; set; }
}
}