cnf
2025-02-13 d36f618c44cc34ebfb529b230dc9ee2906393ae2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace MES.Service.Dto.webApi;
 
public class ErpPosition
{
 
    public string Id { get; set; }
    public string? Type { get; set; }
    public string? FNumber { get; set; }
    public string? FName { get; set; }
    public string? Fdescriptions { get; set; }
    public string? FDept { get; set; }
    public string? FCreateDate { get; set; }
    public string? FForbidderId { get; set; }
    public string? FForbidDate { get; set; }
    public string? FForbidStatus { get; set; }
}