Inheritance: EntityBase
コード例 #1
0
ファイル: MesScmsBom.cs プロジェクト: Novthirteen/yfkey-scms
        public override bool Equals(object obj)
        {
            MesScmsBom another = obj as MesScmsBom;

            if (another == null)
            {
                return(false);
            }
            else
            {
                return(this.Bom == another.Bom && this.ItemCode == another.ItemCode && this.ProductLine == another.ProductLine && this.TagNo == another.TagNo);
            }
        }
コード例 #2
0
 public virtual void UpdateMesScmsBom(MesScmsBom entity)
 {
     entityDao.Update(entity);
 }
コード例 #3
0
 public void Complete(MesScmsBom mesScmsStationBox)
 {
     mesScmsStationBox.Flag = MesDssConstants.MES_SCMS_FLAG_SCMS_UPDATED;
     this.UpdateMesScmsBom(mesScmsStationBox);
 }