| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- package nckd.fi.er.webapi.model;
- import kd.bos.openapi.common.custom.annotation.ApiModel;
- import kd.bos.openapi.common.custom.annotation.ApiParam;
- import nckd.base.common.model.BaseModel;
- import java.math.BigDecimal;
- /**
- * @description:出差申请.行程信息
- * @author: dingsixi
- * @create: 2025/12/11 15:40
- */
- @ApiModel
- public class TripEntryModel extends BaseModel {
- @ApiParam(value = "出差人",required = true)
- private String travelers ;
- @ApiParam(value = "出发地",required = true)
- private String from ;
- @ApiParam(value = "目的地",required = true)
- private String to ;
- @ApiParam(value = "行程期间.开始日期",required = true)
- private String startDate ;
- @ApiParam(value = "行程期间.结束日期",required = true)
- private String endDate ;
- @ApiParam(value = "交通工具",required = true)
- private String vehicle ;
- @ApiParam(value = "费用承担公司",required = true)
- private String costCompany ;
- @ApiParam(value = "费用承担部门",required = true)
- private String costDept ;
- @ApiParam(value = "成本中心")
- private String costCenter ;
- @ApiParam(value = "申请金额",required = true)
- private BigDecimal tripOriAmount ;
- public String getTravelers() {
- return travelers;
- }
- public void setTravelers(String travelers) {
- this.travelers = travelers;
- }
- public String getFrom() {
- return from;
- }
- public void setFrom(String from) {
- this.from = from;
- }
- public String getTo() {
- return to;
- }
- public void setTo(String to) {
- this.to = to;
- }
- public String getStartDate() {
- return startDate;
- }
- public void setStartDate(String startDate) {
- this.startDate = startDate;
- }
- public String getEndDate() {
- return endDate;
- }
- public void setEndDate(String endDate) {
- this.endDate = endDate;
- }
- public String getVehicle() {
- return vehicle;
- }
- public void setVehicle(String vehicle) {
- this.vehicle = vehicle;
- }
- public String getCostCompany() {
- return costCompany;
- }
- public void setCostCompany(String costCompany) {
- this.costCompany = costCompany;
- }
- public String getCostDept() {
- return costDept;
- }
- public void setCostDept(String costDept) {
- this.costDept = costDept;
- }
- public String getCostCenter() {
- return costCenter;
- }
- public void setCostCenter(String costCenter) {
- this.costCenter = costCenter;
- }
- public BigDecimal getTripOriAmount() {
- return tripOriAmount;
- }
- public void setTripOriAmount(BigDecimal tripOriAmount) {
- this.tripOriAmount = tripOriAmount;
- }
- }
|