qiuyao
2025-03-24 3cb2b90791da8e9db3b65eaee0ec4d41afd77325
ÏîÄ¿´úÂë/WIDESEAWCS_Server Õýʽ/WIDESEAWCS_Model/Models/SerialPort/Dt_Process.cs
@@ -4,64 +4,140 @@
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_Process", "工艺表"), MultiTenant]
    public class Dt_Process
    public class Dt_Process : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int CraftID { get; set; }
        //[SugarColumn(IsNullable = true)]
        //public int SleeveNum { get; set; }
        /// <summary>
        /// å¤§åºå·
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int Nodal { get; set; }
        /// <summary>
        /// æ­¥éª¤åºå·
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int SetpNum { get; set; }
        /// <summary>
        /// ç­ç»„
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string CraftType { get; set; }
        [SugarColumn(IsNullable = true, Length = 255)]
        /// <summary>
        /// å·¥ä½œå‰å‡†å¤‡æ­¥éª¤
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 500)]
        public string CraftsStep { get; set; }
        [SugarColumn(IsNullable = true, Length = 255)]
        /// <summary>
        /// å·¥è‰ºå…·ä½“内容
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 2000)]
        public string CraftContent { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        /// <summary>
        /// å·¥å…·
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200)]
        public string Tools { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        /// <summary>
        /// ç‰©æ–™
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200)]
        public  string Material { get; set; }
        
        [SugarColumn(IsNullable = true, Length = 50)]
        public string TorqueOne { get; set; }
        /// <summary>
        /// ç¬¬ä¸€ä¸ªéœ€è¦æ‰­çš„值
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleOne { get; set; }
        public float TorqueOne { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleTwo { get; set; }
        /// <summary>
        /// ç¬¬ä¸€ä¸ªéœ€è¦æ‰­çš„值的个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int TorqueOneQuantity { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        public string TorqueTwo { get; set; }
        /// <summary>
        /// å¥—ç­’id(信息列表)
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleOneid { get; set; }
        /// <summary>
        /// ç¬¬ä¸€ä¸ªå¥—筒数量
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleOne { get; set; }
        /// <summary>
        /// ç¬¬äºŒä¸ªéœ€è¦æ‰­çš„值
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public float TorqueTwo { get; set; }
        /// <summary>
        /// ç¬¬äºŒä¸ªéœ€è¦æ‰­çš„值的个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int TorqueTwoQuantity { get; set; }
        /// <summary>
        /// ç¬¬äºŒä¸ªå¥—ç­’id
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleTowid { get; set; }
        /// <summary>
        /// ç¬¬äºŒä¸ªå¥—筒的数量
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleTwo { get; set; }
        /// <summary>
        /// éœ€è¦æ‰­å‡ ç§ä¸åŒçš„力
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int TorqueSum { get; set; }
        [SugarColumn(IsNullable = true)]
        public  DateTime CreateDate { get; set; }
        /// <summary>
        /// ç‚¹ä½åæ ‡XYZ
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string PointAxisXYZ {  get; set; }
        /// <summary>
        /// ç‚¹ä½åæ ‡HPB
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string PointAxisHPB { get; set; }
        /// <summary>
        /// æ¨¡å—名称
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 100)]
        public string ModuleName { get; set; }
    }
}