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.
18 lines
468 B
18 lines
468 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class HandOverModel
|
|
{
|
|
public string Identification { set; get; }
|
|
public string TransCode { set; get; }
|
|
public string TransSequence { set; get; }
|
|
public string User { set; get; }
|
|
public string MTime { set; get; }
|
|
public string WorkPoint { set; get; }
|
|
}
|
|
}
|