You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
623 B
22 lines
623 B
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public class V_TA_ToleranceProportion
|
|
{
|
|
[Key]
|
|
public long UID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
[DisplayName("容差控制默认0.2 20%")]
|
|
public string VToleranceProportion { get; set; }
|
|
|
|
[DisplayName("零件名称")]
|
|
public string PartName { get; set; }
|
|
[DisplayName("零件类型")]
|
|
public string PartGroup { get; set; }
|
|
}
|
|
}
|
|
|