星火微课系统客户端
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.

ModelApp.cs 588B

4 yıl önce
4 yıl önce
1234567891011121314151617181920212223242526272829303132
  1. namespace XHWK.Model
  2. {
  3. public class ModelApp
  4. {
  5. public int versionid { get; set; }
  6. //构建版
  7. public int versioncode { get; set; }
  8. //版本名称
  9. public string versionname { get; set; }
  10. //大小字节
  11. public int appsize { get; set; }
  12. //app路径
  13. public string versionpath { get; set; }
  14. //创建人
  15. public int createid { get; set; }
  16. //创建时间
  17. public int createtime { get; set; }
  18. //版本描述
  19. public string versioncomm { get; set; }
  20. }
  21. }