纽威
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.

13 lines
301 B

3 years ago
  1. using System;
  2. namespace NFine.Domain
  3. {
  4. public interface IModificationAudited_PORelease
  5. {
  6. string ID { get; set; }
  7. string MTIME { get; set; }
  8. DateTime? ArriveDate { get; set; }
  9. DateTime? Free5 { get; set; }
  10. DateTime? ReleaseDate { get; set; }
  11. }
  12. }