示例#1
0
 public void CopyTo(ReprintLog obj)
 {
     obj.ID          = this.ID;
     obj.SN          = this.SN;
     obj.LabelType   = this.LabelType;
     obj.ReprintBy   = this.ReprintBy;
     obj.MEMO        = this.MEMO;
     obj.CreatedDate = this.CreatedDate;
     obj.UpdatedDate = this.UpdatedDate;
     obj.UpdatedBy   = this.UpdatedBy;
 }
示例#2
0
        public Object Clone()
        {
            ReprintLog obj = new ReprintLog();

            obj.ID = this.ID;

            obj.SN          = this.SN;
            obj.LabelType   = this.LabelType;
            obj.ReprintBy   = this.ReprintBy;
            obj.MEMO        = this.MEMO;
            obj.CreatedDate = this.CreatedDate;
            obj.UpdatedDate = this.UpdatedDate;
            obj.UpdatedBy   = this.UpdatedBy;

            return(obj);
        }