TripEntryModel.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package nckd.fi.er.webapi.model;
  2. import kd.bos.openapi.common.custom.annotation.ApiModel;
  3. import kd.bos.openapi.common.custom.annotation.ApiParam;
  4. import nckd.base.common.model.BaseModel;
  5. import java.math.BigDecimal;
  6. /**
  7. * @description:出差申请.行程信息
  8. * @author: dingsixi
  9. * @create: 2025/12/11 15:40
  10. */
  11. @ApiModel
  12. public class TripEntryModel extends BaseModel {
  13. @ApiParam(value = "出差人",required = true)
  14. private String travelers ;
  15. @ApiParam(value = "出发地",required = true)
  16. private String from ;
  17. @ApiParam(value = "目的地",required = true)
  18. private String to ;
  19. @ApiParam(value = "行程期间.开始日期",required = true)
  20. private String startDate ;
  21. @ApiParam(value = "行程期间.结束日期",required = true)
  22. private String endDate ;
  23. @ApiParam(value = "交通工具",required = true)
  24. private String vehicle ;
  25. @ApiParam(value = "费用承担公司",required = true)
  26. private String costCompany ;
  27. @ApiParam(value = "费用承担部门",required = true)
  28. private String costDept ;
  29. @ApiParam(value = "成本中心")
  30. private String costCenter ;
  31. @ApiParam(value = "申请金额",required = true)
  32. private BigDecimal tripOriAmount ;
  33. public String getTravelers() {
  34. return travelers;
  35. }
  36. public void setTravelers(String travelers) {
  37. this.travelers = travelers;
  38. }
  39. public String getFrom() {
  40. return from;
  41. }
  42. public void setFrom(String from) {
  43. this.from = from;
  44. }
  45. public String getTo() {
  46. return to;
  47. }
  48. public void setTo(String to) {
  49. this.to = to;
  50. }
  51. public String getStartDate() {
  52. return startDate;
  53. }
  54. public void setStartDate(String startDate) {
  55. this.startDate = startDate;
  56. }
  57. public String getEndDate() {
  58. return endDate;
  59. }
  60. public void setEndDate(String endDate) {
  61. this.endDate = endDate;
  62. }
  63. public String getVehicle() {
  64. return vehicle;
  65. }
  66. public void setVehicle(String vehicle) {
  67. this.vehicle = vehicle;
  68. }
  69. public String getCostCompany() {
  70. return costCompany;
  71. }
  72. public void setCostCompany(String costCompany) {
  73. this.costCompany = costCompany;
  74. }
  75. public String getCostDept() {
  76. return costDept;
  77. }
  78. public void setCostDept(String costDept) {
  79. this.costDept = costDept;
  80. }
  81. public String getCostCenter() {
  82. return costCenter;
  83. }
  84. public void setCostCenter(String costCenter) {
  85. this.costCenter = costCenter;
  86. }
  87. public BigDecimal getTripOriAmount() {
  88. return tripOriAmount;
  89. }
  90. public void setTripOriAmount(BigDecimal tripOriAmount) {
  91. this.tripOriAmount = tripOriAmount;
  92. }
  93. }