巨石化纤
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.

15 lines
379 B

using System;
namespace SSWMS.Common
{
[Serializable]
public class SYS_USER
{
public int USER_ID { get; set; }
public string USER_CODE { get; set; }
public string USER_NAME { get; set; }
public string USER_PASSWORD { get; set; }
public string USER_REMARK { get; set; }
public string USER_FLAG { get; set; }
}
}