Files

21 lines
429 B
C#
Raw Permalink Normal View History

2026-04-30 11:34:41 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models.Models
{
public class sys_standard_action
{
public string id { get; set; }
public string standard_id { get; set; }
public string process_id { get; set; }
//public string process_name { get; set; }
public int process_no { get; set; }
}
}