cnf
2025-06-13 4e3503ad797d70b4c48a9cd2a13fa41273d6e1ce
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; }
}