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.

27 lines
804 B

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.ScpEntity
{
public class TA_ToleranceProportion
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long UID { get; set; }
[StringLength(50)]
public string PartCode { get; set; }
[DisplayName("容差控制默认0.2 20%")]
public decimal ToleranceProportion { get; set; }
[StringLength(20)]
public string CreateUser { get; set; }
public string CreateTime { get; set; }
public string UpdateUser { get; set; }
public string UpdateTime { get; set; }
[DisplayName("地点")]
public string Site { get; set; }
}
}