2025-11-11 14:10:57 +08:00

41 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RIZO.Model.Mes.Process
{
[SugarTable("process_info")] // 表名与数据库一致
public class ProcessInfo
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public int Id { get; set; }
[SugarColumn(ColumnName = "process_code")]
public string ProcessCode { get; set; }
[SugarColumn(ColumnName = "process_name")]
public string ProcessName { get; set; }
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
[SugarColumn(ColumnName = "create_time")]
public DateTime CreateTime { get; set; }
[SugarColumn(ColumnName = "update_by")]
public string UpdateBy { get; set; }
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
[SugarColumn(ColumnName = "delflag")]
public int? Delflag { get; set; }
[SugarColumn(ColumnName = "update_name")]
public string UpdateName { get; set; }
[SugarColumn(ColumnName = "create_name")]
public string CreateName { get; set; }
[SugarColumn(ColumnName = "line_code")]
public string LineCode { get; set; }
[SugarColumn(ColumnName = "line_name")]
public string LineName { get; set; }
}
}