sjz
2025-02-13 a376d24964db749ed38a5873d2e6aaa1b82b2e83
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; }
}