hao
2025-10-09 d1a7940a54083e9d1a15bbe14de040556d7cbab5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace MES.Service.Dto.webApi;
 
/// <summary>
/// ERP传输用模具号DTO
/// </summary>
public class ErpMould
{
    public string? Code { get; set; }               // 编码
    public string? Name { get; set; }               // 名称
    public string? DataStatus { get; set; }         // 数据状态
    public string? OldMouldNo { get; set; }         // 旧模具号
    public string? Cavity { get; set; }             // 穴数
    public string? Cycle { get; set; }              // 周期
    public string? Capacity { get; set; }           // 产能
    public string? MachineType { get; set; }        // 机型
    public string? FForbidStatus { get; set; }      // 禁用状态
    public string? ProductWeight { get; set; }      // 产品单重
    public string? MaterialHead { get; set; }       // 料头
    public string? StandardLabor { get; set; }      // 标准人力
    public string? LaborHoursPerThousand { get; set; } // 千片人力工时
    public string? Remark { get; set; }             // 备注
    public string? ErpId { get; set; }              
    public string? Type { get; set; }               // 操作类型(0启用,1禁用,2审核,3反审核)
}