bigpartpurchase.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package model
  2. import (
  3. "fmt"
  4. modernPb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/xdmy"
  5. "time"
  6. )
  7. type BigPartPurchase struct {
  8. Id int64 `gorm:"column:id"`
  9. PastureId int64 `gorm:"column:pastureId"`
  10. OrderNumber string `gorm:"column:orderNumber"`
  11. DepartmentId int64 `gorm:"column:departmentId"`
  12. EmployeId int64 `gorm:"column:employeId"`
  13. CreateTime time.Time `gorm:"column:createTime"`
  14. IsUrgent int32 `gorm:"column:isUrgent"`
  15. WorkflowId int64 `gorm:"column:workflowId"`
  16. FlowCompeleted int32 `gorm:"column:flowCompeleted"`
  17. FlowWorkNote string `gorm:"column:flowworkNote"`
  18. BuyStatue int32 `gorm:"column:buyStatu"`
  19. KGChargeId int32 `gorm:"column:KGChargeId"`
  20. KGChargeDate time.Time `gorm:"column:KGChargedate"`
  21. ChargeId int64 `gorm:"column:chargeId"`
  22. ChargeDate time.Time `gorm:"column:chargeDate"`
  23. CGChargeId int64 `gorm:"column:CGChargeId"`
  24. CGChargeDate time.Time `gorm:"column:CGChargeDate"`
  25. WorkflowNote string `gorm:"column:workflowNote"`
  26. Statue int32 `gorm:"column:statue"`
  27. MatchCode string `gorm:"column:matchCode"`
  28. ProviderId int64 `gorm:"column:providerId"`
  29. Equipment string `gorm:"column:equipment"`
  30. EquipmentDate time.Time `gorm:"column:equipmentDate"`
  31. Field string `gorm:"column:field"`
  32. FieldDate time.Time `gorm:"column:fieldDate"`
  33. PurchaseType modernPb.PurchaseType_Kind `gorm:"column:purchase_type"`
  34. }
  35. func (b *BigPartPurchase) TableName() string {
  36. return "bigpartpurchase"
  37. }
  38. func NewBigPartPurchase(pastureId, departmentId, employeeId, providerId int64,
  39. purchaseType modernPb.PurchaseType_Kind, orderNumber, createdTime string,
  40. ) *BigPartPurchase {
  41. local, _ := time.LoadLocation("Asia/Shanghai")
  42. createTime, _ := time.ParseInLocation("2006-01-02 15:04:05", fmt.Sprintf("%s 00:00:00", createdTime), local)
  43. return &BigPartPurchase{
  44. PastureId: pastureId,
  45. OrderNumber: orderNumber,
  46. DepartmentId: departmentId,
  47. EmployeId: employeeId,
  48. CreateTime: createTime,
  49. IsUrgent: 0,
  50. FlowCompeleted: 1,
  51. FlowWorkNote: "",
  52. BuyStatue: 0,
  53. WorkflowNote: "",
  54. Statue: 7,
  55. ProviderId: providerId,
  56. PurchaseType: purchaseType,
  57. }
  58. }