fix(durable_articles_three): add subject field to model
All checks were successful
continuous-integration/drone/push Build is passing

FRX template references [durable_articles_three.subject] but the
model was missing the property, causing FastReport binding to fail
and the report endpoint to return 500.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
kamonwan taengsuk
2026-05-19 20:54:10 +07:00
parent 65303d336b
commit d9bc1f742f

View File

@@ -11,6 +11,7 @@ namespace rmutr_report.Models
public string responsible_person { get; set; } public string responsible_person { get; set; }
public string phone_no { get; set; } public string phone_no { get; set; }
public string product { get; set; } public string product { get; set; }
public string subject { get; set; }
public List<durable_articles_three_detail> data { get; set; } public List<durable_articles_three_detail> data { get; set; }
public decimal? total_amount { get; set; } public decimal? total_amount { get; set; }
public string durable_type { get; set; } public string durable_type { get; set; }