1
0
mirror of synced 2025-02-21 04:46:29 +01:00

Update music and music_aou xml fields

This commit is contained in:
Yuchen Ji 2022-06-10 00:49:18 +08:00
parent 2f185890e5
commit e7a71ea07d
2 changed files with 4 additions and 20 deletions

View File

@ -34,4 +34,8 @@ public class Music : Record
[Column("use_flag")]
[XmlElement("use_flag")]
public int UseFlag { get; set; }
[Ignore]
[XmlElement("calc_flag")]
public uint CalcFlag { get; set; } = 2;
}

View File

@ -11,26 +11,6 @@ public class MusicAou : Record
[XmlElement("music_id")]
public int MusicId { get; set; }
[Column("title")]
[XmlElement(ElementName = "title", IsNullable = true)]
public string? Title { get; set; }
[Column("artist")]
[XmlElement(ElementName = "artist", IsNullable = true)]
public string? Artist { get; set; }
[Column("release_date")]
[XmlElement(ElementName = "release_date", IsNullable = true)]
public string? ReleaseDate { get; set; }
[Column("end_date")]
[XmlElement(ElementName = "end_date", IsNullable = true)]
public string? EndDate { get; set; }
[Column("new_flag")]
[XmlElement("new_flag")]
public int NewFlag { get; set; }
[Column("use_flag")]
[XmlElement("use_flag")]
public int UseFlag { get; set; }