new
sjz
2025-05-23 f759bbb6d14034c0adbe08cdf7ad43139f598ac0
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; }
}