sjz
2025-08-26 f31edb8fa31c6608d34d303e750890f7eea1930b
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; }
}